vote up 11 vote down star
5

In VS .NET, when you are selecting a folder for a project, a dialog that looks like an OpenFileDialog or SaveFileDialog is displayed, but is set up to accept only folders. Ever since I've seen this I've wanted to know how it's done. I am aware of the FolderBrowserDialog, but I've never really liked that dialog. It starts too small and doesn't let me take advantage of being able to type a path.

I'm almost certain by now there's not a way to do this from .NET, but I'm just as curious how you do it from unmanaged code as well. Short of completely reimplementing the dialog from scratch, how do you modify the dialog to have this behavior?

I'd also like to restate that I am aware of the FolderBrowserDialog but sometimes I don't like to use it, in addition to being genuinely curious how to configure a dialog in this manner. Telling me to just use the FolderBrowserDialog helps me maintain a consistent UI experience but doesn't satisfy my curiosity so it won't count as an answer.

It's not a Vista-specific thing either; I've been seeing this dialog since VS .NET 2003, so it is doable in Win2k and WinXP. This is less of a "I want to know the proper way to do this" question and more of a "I have been curious about this since I first wanted to do it in VS 2003" question. I understand that Vista's file dialog has an option to do this, but it's been working in XP so I know they did something to get it to work. Vista-specific answers are not answers, because Vista doesn't exist in the question context.

I'm accepting Scott Wisniewski's answer because it comes with a working sample, but I think Serge deserves credit for pointing to the dialog customization (which is admittedly nasty from .NET but it does work) and Mark Ransom for figuring out that MS probably rolled a custom dialog for this task.

flag

10 Answers

vote up 2 vote down check

I have a dialog that I wrote called an OpenFileOrFolder dialog that allows you to open either a folder or a file.

If you set it's AcceptFiles value to false, then it operates in only accept folder mode.

You can download the source for it here:

http://www.specbug.com/storage/OpenFileOrFolderDialog.zip

I also talk about it a little in the following blog posts:

http://www.specbug.com/blog/2009/1/23/open-file-or-folder.html http://www.specbug.com/blog/2009/1/25/update.html

If you run into any issues, want more information about how it works, or want to contribute changes, either drop me a line on my blog, or send me an email message to:

scott@transactor.com

Here's a screen shot of the diloag with "AcceptFiles" set to false: alt text

Edit:

I just realized that the source code link may have been broken due to some permission issues. It should now be fixed.

link|flag
Very interesting, and definitely as complicated as I had figured. Any chance of annotating it and pointing out what it does? This along with other comments leads me to believe MS probably just rolled their own dialog. – OwenP Feb 5 at 20:56
I can try, but it might be a few days. I'll probably put it up on my blog. I'll let you know when it's up. – Scott Wisniewski Feb 6 at 0:26
Your site checks the referrer, so the direct link does not work. – Don Reba May 30 at 11:32
vote up -1 vote down

You can use FolderBrowserDialogEx - a re-usable derivative of the built-in FolderBrowserDialog. This one allows you to type in a path, even a UNC path. You can also browse for computers or printers with it. Works just like the built-in FBD, but ... better.

(EDIT: I should have pointed out that this dialog can be set to select files or folders. )

Full Source code (one short C# module). 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;
     }
link|flag
That's a folder browser dialog, not a file browser dialog. Congratulations for not reading! – OwenP Mar 9 at 15:13
1  
Congratulations for being snide! It does files+folders. – Cheeso Mar 9 at 16:09
Sorry if I offended, it's just frustrating to ask a question and spell out "I want this specific thing, not these other things" and have people cheerfully suggest the not-requested thing. I wanted a file browser dialog, not a folder browser dialog. – OwenP Mar 12 at 16:40
vote up 1 vote down

You can use code like this

  • The filter is hide files
  • The filename is hide first text

To advanced hide of textbox for filename you need to look at OpenFileDialogEx

The code:
{
openFileDialog2.FileName = "\r";
openFileDialog1.Filter = "folders|*.neverseenthisfile";
openFileDialog1.CheckFileExists = false;
openFileDialog1.CheckPathExists = false;
}

link|flag
vote up 3 vote down

The Ookii.Dialogs package contains a managed wrapper around the new folder browser dialog.

link|flag
vote up 3 vote down

Exact Audio Copy works this way on Windows XP. The standard file open dialog is shown, but the filename field contains the text "Filename will be ignored".

Just guessing here, but I suspect the string is injected into the combo box edit control every time a significant change is made to the dialog. As long as the field isn't blank, and the dialog flags are set to not check the existence of the file, the dialog can be closed normally.

Edit: this is much easier than I thought. Here's the code in C++/MFC, you can translate it to the environment of your choice.

CFileDialog dlg(true, NULL, "Filename will be ignored", OFN_HIDEREADONLY | OFN_NOVALIDATE | OFN_PATHMUSTEXIST | OFN_READONLY, NULL, this);
dlg.DoModal();

Edit 2: This should be the translation to C#, but I'm not fluent in C# so don't shoot me if it doesn't work.

OpenFileDialog openFileDialog1 = new OpenFileDialog();

openFileDialog1.FileName = "Filename will be ignored";
openFileDialog1.CheckPathExists = true;
openFileDialog1.ShowReadOnly = false;
openFileDialog1.ReadOnlyChecked = true;
openFileDialog1.CheckFileExists = false;
openFileDialog1.ValidateNames = false;

if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
    // openFileDialog1.FileName should contain the folder and a dummy filename
}

Edit 3: Finally looked at the actual dialog in question, in Visual Studio 2005 (I didn't have access to it earlier). It is not the standard file open dialog! If you inspect the windows in Spy++ and compare them to a standard file open, you'll see that the structure and class names don't match. When you look closely, you can also spot some differences between the contents of the dialogs. My conclusion is that Microsoft completely replaced the standard dialog in Visual Studio to give it this capability. My solution or something similar will be as close as you can get, unless you're willing to code your own from scratch.

link|flag
vote up 2 vote down

You can subclass the file dialog and gain access to all its controls. Each has an identifier that can be used to obtain its window handle. You can then show and hide them, get messages from them about selection changes etc. etc. It all depends how much effort you want to take.

We did ours using WTL class support and customized the file dialog to include a custom places bar and plug-in COM views.

MSDN provides information on how to do this using Win32, this CodeProject article includes an example, and this CodeProject article provides a .NET example.

link|flag
vote up -1 vote down

Try this one from Codeproject (credit to Nitron):

I think it's the same dialog you're talking about - maybe it would help if you add a screenshot?

bool GetFolder(std::string& folderpath, const char* szCaption=NULL, HWND hOwner=NULL)
{
	bool retVal = false;

	// The BROWSEINFO struct tells the shell how it should display the dialog.
	BROWSEINFO bi;
	memset(&bi, 0, sizeof(bi));

	bi.ulFlags   = BIF_USENEWUI;
	bi.hwndOwner = hOwner;
	bi.lpszTitle = szCaption;

	// must call this if using BIF_USENEWUI
	::OleInitialize(NULL);

	// Show the dialog and get the itemIDList for the selected folder.
	LPITEMIDLIST pIDL = ::SHBrowseForFolder(&bi);

	if(pIDL != NULL)
	{
		// Create a buffer to store the path, then get the path.
		char buffer[_MAX_PATH] = {'\0'};
		if(::SHGetPathFromIDList(pIDL, buffer) != 0)
		{
			// Set the string value.
			folderpath = buffer;
			retVal = true;
		}		

		// free the item id list
		CoTaskMemFree(pIDL);
	}

	::OleUninitialize();

	return retVal;
}
link|flag
images.google.com/images?hl=en&q=OpenFileDial… Do research when uncertain. I described what I wanted, and FolderBrowserDialog has already been disqualified as an answer. – OwenP Feb 3 at 16:13
"I am aware of the FolderBrowserDialog, but I've never really liked that dialog. It starts too small and doesn't let me take advantage of being able to type a path." Do some research yourself - you can type a path in there. Anyway I think it's a bit of an ambiguous question, so good luck with it. – demoncodemonkey Feb 3 at 16:51
@demoncodemonkey: You can not type in a part of the path and then navigate to the target you want. By far not as convenient as the options the FileOpenDialog offers. – Treb Feb 3 at 20:38
vote up 5 vote down

OK, let me try to connect the first dot ;-) Playing a little bit with Spy++ or Winspector shows that the Folder textbox in the VS Project Location is a customization of the standard dialog. It's not the same field as the filename textbox in a standard file dialog such as the one in Notepad.

From there on, I figure, VS hides the filename and filetype textboxes/comboboxes and uses a custom dialog template to add its own part in the bottom of the dialog.

EDIT: Here's an example of such customization and how to do it (in Win32. not .NET):

m_ofn is the OPENFILENAME struct that underlies the file dialog. Add these 2 lines:

  m_ofn.lpTemplateName = MAKEINTRESOURCE(IDD_FILEDIALOG_IMPORTXLIFF);
  m_ofn.Flags |= OFN_ENABLETEMPLATE;

where IDD_FILEDIALOG_IMPORTXLIFF is a custom dialog template that will be added in the bottom of the dialog. See the part in red below. alt text

In this case, the customized part is only a label + an hyperlink but it could be any dialog. It could contain an OK button that would let us validate folder only selection.

But how we would get rid of some of the controls in the standard part of the dialog, I don't know.

More detail in this MSDN article.

link|flag
That sounds like some explanations I've heard in the past, but I've never seen a demonstration of the concept. Are there walkthroughs in MSDN documentation about doing so? – OwenP Feb 3 at 16:12
vote up 2 vote down

I assume you're on Vista using VS2008? In that case I think that the FOS_PICKFOLDERS option is being used when calling the Vista file dialog IFileDialog. I'm afraid that in .NET code this would involve plenty of gnarly P/Invoke interop code to get working.

link|flag
Vista-specific; I first saw this on VS 2003 on Windows XP. – OwenP Feb 3 at 16:16
vote up 7 vote down

Better to use the FolderBrowserDialog for that.

using (FolderBrowserDialog dlg = new FolderBrowserDialog())
{
    dlg.Description = "Select a folder";
    if (dlg.ShowDialog() == DialogResult.OK)
    {
        MessageBox.Show("You selected: " + dlg.SelectedPath);
    }
}
link|flag
+1, visual studio's folder browser looking like a file browser is a bad idea – sixlettervariables Feb 2 at 18:49
I am aware that it is better to use a FolderBrowserDialog. I'm curious how it was done regardless. The FolderBrowserDialog stinks in many ways anyway; even in Vista it doesn't have the places bar. Funny how if it's better MS has avoided it in 3 VS versions so far. – OwenP Feb 3 at 16:15
The FolderBrowserDialog has many usability issues. I wouldn't consider actually putting it in an application. See my post for a dialog that has much better usability – Scott Wisniewski Feb 5 at 3:13
FolderBrowserDialog does not allow to: - type/paste full paths in the text field at bottom - use "Favorite Links" bar on Vista - use Search on Vista – decasteljau Mar 1 at 19:38

Your Answer

Get an OpenID
or

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