Open an FDLog Browse (OpenPath) dialog box with showfiles option.
bool BrowseForFolder( string * pstrPath, HWND hWndParent, LPCSTR lpcszTitle, DWORD dwCntrl )
true if a folder is selected, false if click Cancel button or double click on a file
EX1
void BrowseForFolder_ex() { string strPath = GetAppPath(); if( BrowseForFolder(&strPath, NULL, NULL, BROWSEFOLDER_SHOW_FILES) ) out_str(strPath); else out_str("please select a folder"); }
origin.h