vote up 1 vote down star

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:

flag

80% accept rate

5 Answers

vote up 11 vote down check

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

Whatever you do, don't use the FolderBrowserDialog.

Just kidding. Use that.

link|flag
-1, really come on ... if you want jokes put them in comments – Sam Saffron Mar 19 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 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 at 22:15
vote up 2 vote down

FolderBrowserDialog works just fine for this purpose.

link|flag
you guys should either expand or delete ... its the same as CMS's answer – Sam Saffron Mar 19 at 21:25
vote up 6 vote down

Check the FolderBrowserDialog class.

// ...    
if (folderBrowserDialog1.ShowDialog() == DialogResult.OK) 
{
    textBox1.Text = folderBrowserDialog1.SelectedPath;
}
link|flag

Your Answer

Get an OpenID
or

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