up vote 2 down vote favorite
share [g+] share [fb]

What's the best way to let a user pick a subdirectory in C#?

For example, an app that lets the user organize all his saved html receipts. He most likely is going to want to be able to select a root subdirectory that the program should search for saved webpages (receipts).

Duplicate:

link|improve this question

75% accept rate
feedback

5 Answers

up vote 11 down vote accepted

The Folder Browser Dialog is the way to go.

If you want to set an initial folder path, you can add this to your form load event:

// Sets "My Documents" as the initial folder path
string myDocsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
FolderBrowserDialog1.SelectedPath = myDocsPath;
link|improve this answer
feedback

Check the FolderBrowserDialog class.

// ...    
if (folderBrowserDialog1.ShowDialog() == DialogResult.OK) 
{
    textBox1.Text = folderBrowserDialog1.SelectedPath;
}
link|improve this answer
feedback

FolderBrowserDialog works just fine for this purpose.

link|improve this answer
you guys should either expand or delete ... its the same as CMS's answer – Sam Saffron Mar 19 '09 at 21:25
feedback

FolderBrowserDialog works, but offers very little customization.

If you want a textbox where users can type in the path have a look here

Dupe of: http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c

link|improve this answer
feedback

Whatever you do, don't use the FolderBrowserDialog.

Just kidding. Use that.

link|improve this answer
-1, really come on ... if you want jokes put them in comments – Sam Saffron Mar 19 '09 at 21:26
+1, really, come on. I think anyone with a basic grasp on english would understand what the poster meant. – Paul Suart Mar 19 '09 at 21:40
I should just go about posting jokes on stack overflow and farming for rep, useful content who needs that – Sam Saffron Mar 19 '09 at 22:15
feedback

Your Answer

 
or
required, but never shown

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