How to recursively list all the files in a directory and child directories in C#?
|
1
|
|
|
|
|
|
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:
|
|||
|
|
|
|
Note that in .NET 4.0 there are (supposedly) iterator-based (rather than array-based) file functions built in:
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
|
||||||
|
|
|
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. |
||
|
|
|
|
string [] filenames = Directory.GetFiles( path, "*", SearchOption.AllDirectories ) |
||||
|
|
|
Where do you want to populate? if tree... here is the example http://www.dreamincode.net/code/snippet2591.htm |
||
|
|
