I have the following code, I receive an error at "if statement" saying that FileInfo does not contain a definition "Contains"
Which is the best solution for looking if a file is in a directory?
Thanks
string filePath = @"C:\Users\";
DirectoryInfo folderRoot = new DirectoryInfo(filePath);
FileInfo[] fileList = folderRoot.GetFiles();
IEnumerable<FileInfo> result = from file in fileList where file.Name == "test.txt" select file;
if (fileList.Contains(result))
{
//dosomething
}