CString szFilter = _T("hdc22_rx_keys_saved"); // 这样重加载文件类型时规避了异常
CFolderPickerDialog objFileDlg(
szFilter,/*LPCTSTR lpszFolder = NULL,*/
OFN_READONLY,/*DWORD dwFlags = 0,*/
NULL,/*CWnd* pParentWnd = NULL,*/
0/*DWORD dwSize = 0*/
);
if (objFileDlg.DoModal() == IDOK)
{
CString outputPath(objFileDlg.GetPathName());
//CString outputPath(objFileDlg.GetFolderPath());
if(!PathIsDirectory(outputPath))
{
//for XP which CFolderPickerDialog cannot work
outputPath = outputPath.Left(outputPath.ReverseFind('\\'));
}
if(!PathIsDirectoryEmpty(outputPath)){
//MessageBox(_T("请选择一个空的目录"));
_MSG_BOX_ERR(_T("[%s]不是一个存在的空目录"), outputPath);
return;
}
}
As I debugged, CFolderPickerDialog can work find in win7/win10, but can only select file just like CFileDialog.
Above shows my workaround, I make user select a file ends with szFilter , and using CString::Left to get the correct folder.