Browse for a directory in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:00:58Z http://stackoverflow.com/feeds/question/11767 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c 6 Browse for a directory in C# Orion Edwards 2008-08-14T23:18:52Z 2009-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#11771 0 Answer by IceHeat for Browse for a directory in C# IceHeat 2008-08-14T23:22:42Z 2008-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#11773 1 Answer by Stu for Browse for a directory in C# Stu 2008-08-14T23:23:27Z 2008-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#11775 8 Answer by Damian Hickey for Browse for a directory in C# Damian Hickey 2008-08-14T23:25:12Z 2008-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#11781 3 Answer by Ch00k for Browse for a directory in C# Ch00k 2008-08-14T23:32:21Z 2008-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#11785 0 Answer by Orion Edwards for Browse for a directory in C# Orion Edwards 2008-08-14T23:33:57Z 2008-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#11800 1 Answer by Andrew Grant for Browse for a directory in C# Andrew Grant 2008-08-15T00:03:45Z 2008-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#13476 1 Answer by Damian Hickey for Browse for a directory in C# Damian Hickey 2008-08-17T02:21:05Z 2008-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#408882 0 Answer by for Browse for a directory in C# 2009-01-03T10:48:18Z 2009-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>