Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customising the browse for folder dialog to show the path

Tags:

c#

winforms

What is the simplest way to customise the System.Windows.Forms.FolderBrowserDialog so a path can be entered using text in a textbox below the tree? This would make it easier to select unmapped UNC paths.

Looks like this KB has some supporting information.

like image 219
Sam Saffron Avatar asked Feb 23 '09 06:02

Sam Saffron


2 Answers

Just this weekend I needed this. I looked and looked but could not find it. Resorted to writing it myself, based on that KB article, and some other things. Here ya go. FolderBrowserDialogEx (article in archive)

Full Source code. Free. MS-Public license.

FolderBrowserDialogEx

Code to use it:

     var dlg1 = new Ionic.Utils.FolderBrowserDialogEx();
     dlg1.Description = "Select a folder to extract to:";
     dlg1.ShowNewFolderButton = true;
     dlg1.ShowEditBox = true;
     //dlg1.NewStyle = false;
     dlg1.SelectedPath = txtExtractDirectory.Text;
     dlg1.ShowFullPathInEditBox = true;
     dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer;
     
     // Show the FolderBrowserDialog.
     DialogResult result = dlg1.ShowDialog();
     if (result == DialogResult.OK)
     {
         txtExtractDirectory.Text = dlg1.SelectedPath;
     }

Capabilities: shows editbox, shows full path in edit box. Can be used to browse printers or computers, as well as files+folders, or just folders.

Edit, 2018-05-31: If the Codeplex link above does not work for you, this Git resource also exists.

Edit, 2022-02-11: There is probably new repo of original author https://github.com/DinoChiesa/DotNetZip/blob/master/Zip/Resources/FolderBrowserDialogEx.cs

like image 148
Cheeso Avatar answered Oct 11 '22 13:10

Cheeso


Try under code project folder browser - this allows customizing the dialog in many ways.

Also in social.msdn.microsoft.com there is a post that suggest creating a form of your own for that and even suggest the code for it.

like image 35
Dror Avatar answered Oct 11 '22 12:10

Dror