I've come across some strange behavior trying to get files that start with a certain string.

Please would someone give a working example on this:

I want to get all files in a directory that begin with a certain string, but also contain the xml extension.

for example:

 apples_01.xml
 apples_02.xml
 pears_03.xml

I want to be able to get the files that begin with apples.

So far I have this code

 DirectoryInfo taskDirectory = new DirectoryInfo(this.taskDirectoryPath);
 FileInfo[] taskFiles = taskDirectory.GetFiles("*.xml");

Thanks

link|improve this question

1  
isnt apples*.xml working? – Umair Ahmed Jul 29 '09 at 8:17
feedback

3 Answers

up vote 11 down vote accepted
FileInfo[] taskFiles = taskDirectory.GetFiles("apples*.xml");
link|improve this answer
haha, you gotta be kidding? Is this all? – JL. Jul 29 '09 at 8:16
awesome, didnt know that – CodeSpeaker Jul 29 '09 at 8:19
Simplicity is the best answer. For more complex scenarios you may use a regular expression after retrieving all the files – Luis Filipe Jul 29 '09 at 8:49
1  
GetFiles can be unreliable as it searches both the shortname and long name. I would second the recommendation to .GetFiles() and then filter using a regular expression. (Better yet, use the new .EnumerateFiles() in .net 4) – xkingpin May 17 '10 at 21:47
feedback

var taskFiles = taskDirectory.GetFiles("*.xml").Where(p => p.Name.StartsWith("apples"));

link|improve this answer
feedback

GetFiles list files based on Search Pattern you applied.

Please refer to DirectoryInfo.GetFiles to know about how to use Search Pattern.

link|improve this answer
+1 for the MSDN link. I was about to post it but lost connection to the site. – Cerebrus Jul 29 '09 at 10:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.