I have a command as below. I find if I use a file pattern of *.csv it also picks up items with a .csvx extension. Maybe it's a throwback to the 8.3 filename days - anyone know a way that would return them properly, preferably without rolling our own?
files = (from file in Directory.EnumerateFiles(sourceFolder, filePattern, SearchOption.TopDirectoryOnly) select file).ToList();
ToList()withEnumerateFiles()– Henk Holterman Jan 4 '12 at 22:47*.csvit also picks up items with a.csvx" – CodesInChaos Jan 4 '12 at 22:49*.csvxfile would indeed match the*.csvpattern. – CodesInChaos Jan 4 '12 at 22:51"in a code block. – Henk Holterman Jan 4 '12 at 23:06