vote up 0 vote down star

How do I use wildcards in C# to list down files contained in a selected folder?

flag

75% accept rate
Could you explain what you want to do a little better please? Listing the files whose filenames match your string or some other thing? – ullmark Oct 18 at 12:02

3 Answers

vote up 7 vote down check

Directory.GetFiles is your friend here:

Directory.GetFiles(@"C:\Users\Me\Documents", "*.docx");

or, recursively:

Directory.GetFiles(
    @"C:\Users\Me\Documents",
    "*.docx",
    SearchOption.AllDirectories);
link|flag
vote up 3 vote down
using System.IO;

DirectoryInfo folder = new DirectoryInfo(@"c:\blah");
if (folder.Exists) // else: Invalid folder!
{
  FileInfo[] files = folder.GetFiles("*.xml");

  foreach (FileInfo file in files)
  {
    DoSmething(file.FullName);
  }
}
link|flag
vote up 1 vote down

You can do something like this:

string[] files = Directory.GetFiles(@"c:\myfolder", "*.txt", SearchOption.AllDirectories)
link|flag

Your Answer

Get an OpenID
or

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