1var files = from file in new DirectoryInfo(@"K:\SomeFolder").GetFiles() 2 where file.Name == "SomeFileName.txt" 3 select file; 4