Possible Duplicate:
Can you call Directory.GetFiles() with multiple filters?
How do you filter on more than one extension?
I've tried:
FileInfo[] Files = dinfo.GetFiles("*.jpg;*.tiff;*.bmp");
FileInfo[] Files = dinfo.GetFiles("*.jpg,*.tiff,*.bmp");
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Why not create an extension method? That's more readable.
EDIT: a more efficient version:
Usage:
|
|||||||||||||
|
|
You can get every file, then filter the array:
This will be (marginally) faster than every other answer here. |
||||
|
|
|
You can't do that, because
If you're working with .NET 4, you can use the
|
|||||||||||
|
|
The following retrieves the jpg, tiff and bmp files and gives you an
If you really need an array, simply stick |
|||||
|
|
I'm not sure if that is possible. The MSDN GetFiles reference says a search pattern, not a list of search patterns. I might be inclined to fetch each list separately and "foreach" them into a final list. |
|||
|
|
|
I know there is a more elegant way to do this and I'm open to suggestions... this is what I did:
|
|||
|
|
You can use LINQ Union method:
|
|||
|
|
|
I am using following way to list files. '////cblSourceFiles is CHECK BOX LIST CONTROL <_asp:CheckBoxList ID="cblSourceFiles" runat="server" DataTextField="Name" DataValueField="Name" />
|
||||
|
|