我尝试了我在这个线程上找到的内容,但没有完全按照我想要的方式工作......我有一个名为photos
它的文件夹是否may
有图片。picture's name
是matriculation
客户的。我需要通过matriculation
asparameter
并检查是否有一个我通过 aspicture
的名称matriculation
parameter
我试过这个:
public void VerifyPhoto(string matriculation)
{
string path = Txt_PhotosPath.Text;
var file = Directory.GetFiles(path, matriculation + ".jpg");
}
我如何检查它是否找到了图片?我试图比较这个,file != null
但它不适用于var
类型。任何提示?debuging
我看到它找到了图片,因为有一个String[1]
但我不知道check
它...
---更新--- path
:C:"\Users\admin\Desktop\photos" matriculation
:"607659.jpg" 有一个同名的文件,但它不断返回false
有什么问题?
string path = Txt_PhotosPath.Text;
string filename = string.Format("{0}.jpg", matriculation);
if (Directory.Exists(path))
{
if (File.Exists(Path.Combine(path, filename)))
{
return true;
}
else
return false;
}
else
return false;