Click here to Skip to main content
Click here to Skip to main content

Select file or folder from the same dialog

By , 30 Nov 2009
 

FileFolderDialog

Introduction

This code demonstrates a way to use the managed FileOpenDialog control (available in .NET 2.0+) to open either a file or a folder from within the same dialog.

Background

For my Open-Source project, I was looking for a control that would allow users to select either a file or a folder from within the same dialog. Having searched the web, I came across a few solutions (one involving calling non-managed code, and one involving a custom-written control). Unfortunately, both solutions didn't work for me. The first one used the FolderSelect dialog (which is pretty inconvenient compared to the FileOpen dialog), and the second one did not provide 100% of the Windows dialog functionality.

I then decided to look into the source code of the WinMerge utility to see how they implemented similar functionality in C++ (and potentially used some native calls). It turned out that the solution was available right inside the .NET framework.

Using the code

The key to getting OpenFileDialog to select both files and folders is to set the ValidateNames and CheckFileExists properties to false (dialog.ValidateNames = false; dialog.CheckFileExists = false) and set FileName to some special keyword to make sure that folders get selected (dialog.FileName = "Folder Selection";).

// Set validate names and check file exists to false otherwise windows will
// not let you select "Folder Selection."
dialog.ValidateNames = false;
dialog.CheckFileExists = false;
dialog.CheckPathExists = true;

...

// Always default to Folder Selection.
dialog.FileName = "Folder Selection.";

For convenience, I have wrapped OpenFileDialog inside a custom class, FileFolderDialog, and have also added a few helper properties to parse the returned file name.

History

  • 11/25/2009 - First version of the article published.
  • 11/30/2009 - Updated code to work with Windows 7.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

stankovski
Team Leader
United States United States
Denis Stankovski is a software development lead in a consulting company.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionLead to Gold PinmemberMilesAhead28-Nov-12 6:34 
QuestionNot able to select folder on Win7 and VS 2008 PinmemberMember 325620513-Sep-11 23:37 
NewsDoesn't work PinmemberMember 418359028-Jan-11 13:01 
GeneralGood but short PinmemberToli Cuturicu19-Aug-10 5:08 
Questioncompatibility issues? PinmemberIGood13-Dec-09 16:37 
QuestionHow to get multiple selected folder and file path PinmemberPatel Pranav30-Nov-09 20:26 
GeneralFilename "Folder Selection." PinmemberAndromeda Shun25-Nov-09 21:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 30 Nov 2009
Article Copyright 2009 by stankovski
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid