vote up 6 vote down star

How can I preset a control to the user that allows them to select a directory?

There doesn't seem to be any native .net controls which do this?

flag

76% accept rate

8 Answers

vote up 9 vote down check

FolderBrowserDialog class?

http://msdn.microsoft.com/en-us/library/system.windows.forms.folderbrowserdialog.aspx

link|flag
vote up 3 vote down

You could just use the FolderBrowserDialog class from System.Windows.Forms

link|flag
vote up 1 vote down

It's not heavy-weight at all. Crude, yes, but it's much better than rolling your own.

link|flag
vote up 1 vote down

Please don't try and roll your own with a TreeView/DirectoryInfo class. For one thing there are many nice features you get for free (icons/right-click/networks) by using SHBrowseForFolder. For another there are a edge cases/catches you will likely not be aware of.

link|flag
vote up 1 vote down

you missed it bacause the framework is getting so big, its getting very easy to miss stuff. I'm doing it alot these days!

link|flag
vote up 0 vote down

You could use a TreeView in combination with the DirectoryInfo class.

link|flag
vote up 0 vote down

How'd I miss that FolderBrowserDialog? woops :-)

link|flag
vote up 0 vote down

For much more functionality than the FolderBrowserdialog, like filtering, check-boxes, etc, take a look at 3rd party controls like Shell MegaPack. Since they are controls, so they can be put in your own forms instead of appearing as a modal dialog.

link|flag

Your Answer

Get an OpenID
or

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