vote up 3 vote down star
1

How to recursively list all the files in a directory and child directories in C#?

flag

5 Answers

vote up 2 vote down check

This article covers all you need. Except as opposed to searching the files and comparing names, just print out the names.

It can be modified like so:

   static void DirSearch(string sDir)
   {
       try
       {
           foreach (string d in Directory.GetDirectories(sDir))
           {
               foreach (string f in Directory.GetFiles(d))
               {
                   Console.WriteLine(f);
               }
               DirSearch(d);
           }
       }
       catch (System.Exception excpt)
       {
           Console.WriteLine(excpt.Message);
       }
   }
link|flag
vote up 8 vote down

Note that in .NET 4.0 there are (supposedly) iterator-based (rather than array-based) file functions built in:

    foreach (string file in Directory.EnumerateFiles(
        path, "*.*", SearchOption.AllDirectories))
    {
        Console.WriteLine(file);
    }

At the moment I'd use something like below; the inbuilt recursive method breaks too easily if you don't have access to a single sub-dir...; the Queue<string> usage avoids too much call-stack recursion, and the iterator block avoids us having a huge array.

static void Main() {
    foreach (string file in GetFiles(SOME_PATH)) {
        Console.WriteLine(file);
    }
}

static IEnumerable<string> GetFiles(string path) {
    Queue<string> queue = new Queue<string>();
    queue.Enqueue(path);
    while (queue.Count > 0) {
        path = queue.Dequeue();
        try {
            foreach (string subDir in Directory.GetDirectories(path)) {
                queue.Enqueue(subDir);
            }
        }
        catch(Exception ex) {
            Console.Error.WriteLine(ex);
        }
        string[] files = null;
        try {
            files = Directory.GetFiles(path);
        }
        catch (Exception ex) {
            Console.Error.WriteLine(ex);
        }
        if (files != null) {
            for(int i = 0 ; i < files.Length ; i++) {
                yield return files[i];
            }
        }
    }
}
link|flag
Nice aproach +1. I once did something like (for java) this because I also think that a non-recursive solution can be better. – bruno conde May 30 at 9:30
1  
nice. I'll pass a note on to the team that they should add SearchOptions.IgnoreAccessErrors. – Bruce May 30 at 16:40
vote up 0 vote down

You may want to look at this question where I have presented a code sample that uses recursion to render a directory structure in a TreeView. The logic should be the same in most cases.

link|flag
vote up 6 vote down

string [] filenames = Directory.GetFiles( path, "*", SearchOption.AllDirectories )

link|flag
2  
The problem with this is that it breaks very easily if you don't have access to a single directory: no results... – Marc Gravell May 30 at 9:15
vote up 0 vote down

Where do you want to populate? if tree... here is the example http://www.dreamincode.net/code/snippet2591.htm

link|flag

Your Answer

Get an OpenID
or

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