Browse for a directory in C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:00:58Zhttp://stackoverflow.com/feeds/question/11767http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11767/browse-for-a-directory-in-c6Browse for a directory in C#Orion Edwards2008-08-14T23:18:52Z2009-01-03T10:48:18Z
<p>How can I preset a control to the user that allows them to select a directory?</p>
<p>There doesn't seem to be any native .net controls which do this?</p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/11771#117710Answer by IceHeat for Browse for a directory in C#IceHeat2008-08-14T23:22:42Z2008-08-14T23:22:42Z<p>You could use a TreeView in combination with the DirectoryInfo class.</p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/11773#117731Answer by Stu for Browse for a directory in C#Stu2008-08-14T23:23:27Z2008-08-14T23:23:27Z<p>It's not heavy-weight at all. Crude, yes, but it's much better than rolling your own.</p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/11775#117758Answer by Damian Hickey for Browse for a directory in C#Damian Hickey2008-08-14T23:25:12Z2008-08-14T23:25:12Z<p>FolderBrowserDialog class?</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.folderbrowserdialog.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.forms.folderbrowserdialog.aspx</a></p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/11781#117813Answer by Ch00k for Browse for a directory in C#Ch00k2008-08-14T23:32:21Z2008-08-14T23:32:21Z<p>You could just use the FolderBrowserDialog class from System.Windows.Forms</p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/11785#117850Answer by Orion Edwards for Browse for a directory in C#Orion Edwards2008-08-14T23:33:57Z2008-08-14T23:33:57Z<p>How'd I miss that FolderBrowserDialog? woops :-)</p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/11800#118001Answer by Andrew Grant for Browse for a directory in C#Andrew Grant2008-08-15T00:03:45Z2008-08-15T00:03:45Z<p>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.</p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/13476#134761Answer by Damian Hickey for Browse for a directory in C#Damian Hickey2008-08-17T02:21:05Z2008-08-17T02:21:05Z<p>you missed it bacause the framework is getting so big, its getting very easy to miss stuff. I'm doing it alot these days!</p>
http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c/408882#4088820Answer by for Browse for a directory in C#2009-01-03T10:48:18Z2009-01-03T10:48:18Z<p>For much more functionality than the FolderBrowserdialog, like filtering, check-boxes, etc, take a look at 3rd party controls like <a href="http://www.ssware.com" rel="nofollow">Shell MegaPack</a>.
Since they are controls, so they can be put in your own forms instead of appearing as a modal dialog.</p>