vote up 0 vote down star

I am using this to get all files in a directory:

string[] files = Directory.GetFiles(sourceDirectory_);

But is there a way to get all files that end with "jpg" in one line without doing an

if (file.endswidth("jpg")

check?

flag

this will fail if the file extension is JPG. All caps. So not a good practice. – prashant_sp Mar 22 at 10:56

2 Answers

vote up 5 vote down check
Directory.GetFiles (sourceDirectory_, "*.jpg")

See the MSDN docs for this overload for more details.

link|flag
this will fail, if the extension is JPG. Not a good practice. – prashant_sp Mar 22 at 10:56
Um? Since when does Windows do case-sensitive filename comparisons? – Pontus Gagge Mar 22 at 11:15
As Pontus says, this method is case-insensitive. I've just checked it with exactly the situation you describe, prashant_sp - it picked up "a.jpg" and "b.JPG" with no problems. – Jon Skeet Mar 22 at 12:41
vote up 3 vote down

You can provide the search pattern as a second parameter to GetFiles:

string[] files = Directory.GetFiles(sourceDirectory_, "*.jpg");
link|flag

Your Answer

Get an OpenID
or

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