Title says it all. How can you obtain a list of files (as a stringcollection or some other storage method) which contains the full path on the user's computer to the files?

Is there a method for doing so?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

It looks like you want to use Directory.GetFiles() in the System.IO namespace.

Docs here.

link|improve this answer
That did it, thanks! – Cyclone Sep 22 '09 at 0:30
Question, how can I get all the files inside of all the subdirectories as well? – Cyclone Sep 22 '09 at 0:57
There's probably a pre-defined method for it, but otherwise just right a simple recursion. – phoebus Sep 22 '09 at 1:24
Ugh, that's write a simple recursion, sorry. – phoebus Sep 22 '09 at 1:25
1  
@Cyclone: please read the documentation that was linked. Hint: Directory.GetFiles(string, string, SearchOptions) – jnylen Sep 22 '09 at 2:25
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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