vote up 4 vote down star

I want to search a directory for all files that match a certain pattern. Surprisingly, I have not had to do this since vb6 (Dir)... I'm sure things have changed since then!

-Thanks

flag

76% accept rate

1 Answer

vote up 8 vote down check

use SearchOption.AllDirectories parameter:

using System.IO;

Directory.GetFiles(@"C:\", "*.mp3", SearchOption.AllDirectories);
link|flag
yes, things have changed since Dir in VB6, the System.IO.SearchOption.AllDirectories means you don't need to recurse the directories yourself anymore. – Hamish Smith Sep 23 '08 at 5:11

Your Answer

Get an OpenID
or

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