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

CFolderDialog - Selecting Folders

By , 17 Feb 2005
 

Introduction

As I mentioned in my other article "CIconDialog - Selecting Icons", while developing a wizard application, I needed a dialog to select an icon from executables and another one for selecting folders on multiple ones, but did not find anything about in MFC. So, CFolderDialog was written. It wraps the ::SHBrowseForFolder API.

Sample Usage

Sample Image

The CFolderDialog is derived from CCommonDialog and acts like any common dialog. See sample usage:

//...
#ifndef __FOLDERDLG_H__
    #include "FolderDlg.h"
#endif
// ...
void CSomeDialog::OnSomeHandler( void ) 
{ 
    m_strFolderPath = _T( "d:\\Windows" ); // Just for sample    
    m_strDisplayName.Empty();
    
    CFolderDialog dlg(  _T( "Dialog Title" ), m_strFolderPath, this );
    if( dlg.DoModal() == IDOK  )
    {    
        m_strFolderPath  = dlg.GetFolderPath();
        m_strDisplayName = dlg.GetFolderDisplayName();
        // Use folder path and display name here ...
    }    
}
//

Sample Image

See demo project source for more.

Setting the Root Folder

You can also set the root folder of the dialog, specifying the location of the root folder from which to start browsing. Only the specified folder and any subfolders that are beneath it in the namespace hierarchy will appear in the dialog box.

Sample Image

See sample usage:

//...
#ifndef __FOLDERDLG_H__
    #include "FolderDlg.h"
#endif
// ...
void CSomeDialog::OnSomeHandler( void ) 
{
    CFolderDialog dlg( _T( "Root folder is C:\" ), NULL, this );
    dlg.SetRootFolder( _T( "C:\\" );
    
    if( dlg.DoModal() == IDOK  )
    {       
        // ...
    }
}
//

Sample Image

Thanks to Eckhard Schwabe and Jose Insa for that sample.

Custom Filtering

Under Microsoft® Windows® XP/2003 or later, you can do custom filtering on the contents of the dialog box.

Sample Image

To create a custom filter, follow these steps:

  1. Set the BIF_NEWDIALOGSTYLE flag in the uFlags member of the CFolderDialog constructor. Override the OnIUnknown virtual member function in the derived class. On OnIUnknown, the function's pIUnknown parameter will contain a pointer to an instance of IUnknown. Call QueryInterface on that IUnknown to obtain a pointer to an IFolderFilterSite.
  2. Create an object that implements IFolderFilter - derive a class from it that implements all basic pure virtual member functions of IUnknown, and implement IFolderFilterSite::ShouldShow and IFolderFilterSite::GetEnumFlags functions, that do filtering.
  3. Call IFolderFilterSite::SetFilter (pointer to which you obtained in step 1), passing it a pointer to your custom IFolderFilter derived class. IFolderFilterSite::ShouldShow and IFolderFilterSite::GetEnumFlags methods can then be used to include and exclude items from the tree.
  4. Once the filter is created, the IFolderFilterSite interface is no longer needed. Call IFolderFilterSite::Release if you have no further use for it.

Sample Image

I have added a sample custom filtering (look at the picture, the dialog shows only "JPG/GIF/BMP" files in the tree). Thanks to Arik Poznanski for his article "C# does Shell, Part 1". For more information, please see the source code.

Class Members

Base Class

  • CCommonDialog

Data Members

  • m_bi - The Windows BROWSEINFO structure. Provides access to basic folder dialog box parameters.
  • m_szFolPath - Contains the path of the folder selected with the dialog.
  • m_szSelPath - Contains the folder path to be initially selected when the the dialog opens.

Construction

Constructs a CFolderDialog object:

CFolderDialog( IN LPCTSTR pszTitle = NULL, IN LPCTSTR pszSelPath = 
      NULL, IN CWnd* pWndParent = NULL, IN UINT uFlags = BIF_RETURNONLYFSDIRS )
  • pszTitle - Title to display in the top of the dialog.
  • pszSelPath - The folder path to be initially selected when the the dialog opens.
  • pWndParent - A pointer to the file dialog-box object's parent or owner window.
  • uFlags - A combination of one or more flags that allows you to customize the dialog box. For more information, see BROWSEINFO structure in the Platform SDK.

Operations

  • DoModal( void ) Displays the browse for folder dialog box and allows the user to make a selection.
  • SetSelectedFolder( IN LPCTSTR pszPath ) - Sets the folder path to be initially selected when the the dialog opens.
  • SetRootFolder( IN LPCTSTR pszPath ) - Sets the root folder path to show. If pszPath is NULL, the root folder is removed.
  • GetRootFolder( IN OUT LPTSTR pszPath ) - Gets the root folder of the dialog. The pszPath buffer must be at least MAX_PATH characters in size.
  • GetSelectedFolder( void ) const - Gets the folder path to be initially selected when the the dialog opens.
  • GetFolderPath( void )const - Retrieves the path of the open folder.
  • GetFolderDisplayName( void )const - Retrieves the display name of the currently open folder.
  • GetFolderImageIndex( void )const - Gets the image associated with the selected folder. The image is specified as an index to the system image list.
  • GetBI( void ) - Retrieves the BROWSEINFO structure of the CFolderDialog object.
  • GetBI( void )const - Retrieves the BROWSEINFO structure of the CFolderDialog object.

Overridables

  • OnInitialized( void ) - Called when browse dialog box has finished initializing.
  • OnSelChanged( IN LPITEMIDLIST pItemIDList ) - Called when browse dialog box selection is changed.
  • OnValidateFailed( IN LPCTSTR pszPath ) - Called when the user typed an invalid name into the edit box (if any) of the browse dialog box. Return zero to allow the dialog to be dismissed or nonzero to keep the dialog open.

Microsoft® Windows® XP/2003 or later:

  • OnIUnknown( IN IUnknown* pIUnknown ) - Provides an IUnknown interface to the client for custom filtering of the contents of the dialog box, using IFolderFilterSite and IFolderFilter.

Functions, that are valid to be called only from Overridables:

  • EnableOK( IN BOOL bEnable = TRUE ) - Enables or disables the browse dialog box's OK button.
  • SetSelection( IN LPITEMIDLIST pItemIDList ) - Selects the specified folder.
  • SetSelection( IN LPCTSTR pszPath ) - Selects the specified folder.
  • SetStatusText( IN LPCTSTR pszText ) - Sets the dialog box status text.

Shell version 5.0 or later:

  • SetExpanded( IN LPITEMIDLIST pItemIDList ) - Specifies a path to expand in the dialog box.
  • SetExpanded( IN LPCTSTR pszPath ) - Specifies a path to expand in the dialog box.
  • SetOKText( IN LPCTSTR pszText ) - Sets the dialog box "OK" button text.

Notes

If you convert this project to VC 7.0 or later, do not forget to add shlwapi.dll to the list of delay loaded DLLs because it uses ::StrRetToStr function of shlwapi.dll 5.0. Go to "[Project Properties]>[Configuration Properties]>[Linker]>[Input]" and add "shlwapi.dll;" to the list of "[Delay Loaded DLLs]". VC 6.0 project does this using "/DelayLoad" linker option, not supported under VC 7.0 or later.

Version History

  • 27 Mar 2002
    • Posted the article.
  • 30 Mar 2003
    • Some code changes.
    • Added missing in old Platform SDK new flag definitions.
    • Added support for both MFC 6.0 and 7.0.
    • Added OnIUnknown handler for Microsoft® Windows® XP folder filtration.
    • Added SetExpanded, SetOKText and GetSelectedFolder functions.
  • 30 May 2003
    • Added OnSelChanged default implementation.
  • 14 Jul 2003
    • Added custom filtering sample for Microsoft® Windows® XP/2003 or later.
    • Set SetExpanded and SetOKText to noinline.
  • 07 Jan 2004
    • Added SetRootFolder and GetRootFolder functions.
    • Changed IFolderFilter implementation.
  • 15 Feb 2005
    • Small bug fix in DoModal, thanks to WindSeven.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Armen Hakobyan
Software Developer (Senior) SafeNet Inc
United States United States
Member
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberom14 Mar '13 - 6:01 
QuestionFull path in the Edit box [modified]memberKranggg4 Mar '13 - 2:23 
GeneralMy vote of 5memberKranggg4 Mar '13 - 2:22 
Questioncan't see folder for my android device [modified]membersteveh211216 Feb '13 - 22:15 
QuestionCodememberluizalves197216 Mar '12 - 9:48 
QuestionFolder Dialogmemberjoh meerholz12 Aug '11 - 2:01 
GeneralError when built in VS 6.0memberJamesBunger29 Sep '10 - 9:58 
GeneralRe: Error when built in VS 6.0memberArmen Hakobyan29 Sep '10 - 11:02 
GeneralRe: Error when built in VS 6.0memberArmen Hakobyan29 Sep '10 - 11:08 
QuestionVisual Studio 6memberJamesBunger28 Sep '10 - 15:33 
AnswerRe: Visual Studio 6memberArmen Hakobyan29 Sep '10 - 7:37 
GeneralAvoid SHBrowseForFoldermemberAndrew Phillips3 Sep '10 - 0:27 
GeneralRe: Avoid SHBrowseForFoldermembergordon8816 Jun '12 - 12:53 
Fine but your code is bugged,
crash DirDialog.cpp line 644 on edt1 Dialog Item undefined
Change to do in manifest for a different version of Dialog ?
Anyway I can't get time to debug this
Sorry
Gordon

QuestionHow can insert the user and password for some network patthmemberluiggivillar30 Apr '10 - 8:45 
GeneralBug If initial folder can not be reached. [modified]memberMember 305768817 Jan '10 - 21:42 
GeneralRe: Bug If initial folder can not be reached.memberArmen Hakobyan19 Jan '10 - 3:14 
GeneralLinker ErrorsmemberAnur Ravi30 Dec '09 - 7:52 
QuestionHow to install filter for explorer?membernanfang30 Dec '07 - 3:14 
Questionhow to use custom filtermemberEdwardChan10 Oct '07 - 14:53 
GeneralAuto start transfer from camera (MTP) to diskmemberandygm26 Jul '07 - 23:36 
QuestionLicensememberwjvdh10 Jul '07 - 0:49 
AnswerRe: LicensememberArmen Hakobyan10 Jul '07 - 1:28 
GeneralRe: Licensememberwjvdh10 Jul '07 - 1:34 
QuestionStrRetToStr undeclared identifiermemberddgsptntea5 Jul '07 - 0:00 
AnswerRe: StrRetToStr undeclared identifiermemberArmen Hakobyan6 Jul '07 - 0:24 
QuestionHow to compile in Visual C++ 6.0membercristitomi25 Mar '07 - 22:47 
AnswerRe: How to compile in Visual C++ 6.0memberArmen Hakobyan29 Mar '07 - 5:59 
GeneralRe: How to compile in Visual C++ 6.0membercristitomi29 Mar '07 - 10:38 
GeneralHidding 'CWnd::m_hWnd' ..memberrbid3 Dec '06 - 23:54 
GeneralOn folder's content: enable/disable the Ok bttnmemberLe cosaque12 Oct '06 - 2:00 
AnswerRe: On folder's content: enable/disable the Ok bttnmemberArmen Hakobyan18 Oct '06 - 4:36 
QuestionScroll flickeringmemberShiriA24 Jul '06 - 7:25 
Questionhow about MTP (Media Transport Protocol) supported devicememberdecang11 Nov '05 - 4:38 
QuestionHow to get the folder path of "My Network Places" on SelChangedmemberNaru21 Oct '05 - 14:47 
AnswerRe: How to get the folder path of "My Network Places" on SelChangedmemberNaru22 Oct '05 - 6:53 
GeneralAdaptation for a Matlab DLLsussohad gal27 Aug '05 - 22:37 
AnswerRe: Adaptation for a Matlab DLLmemberArmen Hakobyan28 Aug '05 - 23:52 
GeneralRe: Adaptation for a Matlab DLLsussOhad Gal31 Aug '05 - 13:25 
GeneralI dont see the "New Folder" buttonmemberAtewa8 Apr '05 - 12:07 
GeneralRe: I dont see the "New Folder" buttonmemberSteve Mayfield8 Apr '05 - 13:07 
GeneralRe: I dont see the "New Folder" buttonmemberDarren Hutchinson30 Jan '06 - 16:51 
GeneralRe: I dont see the "New Folder" buttonmembersunnyloves31 May '10 - 21:39 
Generalcompile errorsmemberTomDuffy1 Apr '05 - 9:57 
GeneralRe: compile errorsmemberArmen Hakobyan3 Apr '05 - 23:53 
GeneralRe: compile errorsmemberTomDuffy4 Apr '05 - 7:46 
GeneralFile dialog to te cameramemberAlex Evans13 Feb '05 - 18:29 
GeneralRe: File dialog to te cameramemberArmen Hakobyan13 Feb '05 - 19:57 
GeneralRe: File dialog to te cameramemberAlex Evans13 Feb '05 - 20:06 
GeneralRe: File dialog to te cameramemberArmen Hakobyan13 Feb '05 - 21:34 
GeneralRe: File dialog to te cameramemberAlex Evans14 Feb '05 - 10:21 

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.130516.1 | Last Updated 17 Feb 2005
Article Copyright 2002 by Armen Hakobyan
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid