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;
}
}
正如我調試,CFolderPickerDialog能找到工作,在Win7/win10,但只能選擇文件一樣的CFileDialog。 上面顯示了我的解決方法,我讓用戶選擇一個文件以szFilter結尾,並使用CString :: Left獲取正確的文件夾。