If I do simply

dirInfoObj.GetFiles("*.jpg")

, it will return the 2 jpg's I have there. But if I try and get both jpg's and png's, like

dirInfoObj.GetFiles("*.jpg,*.png")

, it won't return anything.

Am I doing something wrong? Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

There is nothing in the documentation for GetFiles that indicates that it supports usage of the , character like you mean it. If you are using LINQ, you could do something like:

var files = dirInfoObj.GetFiles("*.jpg").Concat(dirInfoObj.GetFiles("*.png"));

If you need files to be an array, just throw a .ToArray() on the end.

link|improve this answer
I ended up doing a ghetto "var availExtensions = ".jpg,.gif"" then foreach file in GetFiles, compare the .Extension w/ each of these, and process if there was a match. Oh well. Thanks! – Ian Davis Nov 9 '10 at 21:24
That's probably a more efficient way to do it anyway, especially with an arbitrarily large set of extensions. – cdhowie Nov 9 '10 at 21:25
feedback

The MSDN entry on GetFiles

http://msdn.microsoft.com/en-us/library/8he88b63.aspx

states how it can be used.

It does not support a comma operator for multiple extensions.

link|improve this answer
It does? Where? – Hans Passant Nov 9 '10 at 21:04
It does state how it can be used, under the "remarks" section. It gives examples of what wildcards can be used, and how they all work out. – McKay Nov 9 '10 at 21:07
feedback

Your Answer

 
or
required, but never shown

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