我使用Visual Studio 2008(Windows 7)开发并使用
CFileDialog(TRUE, NULL, lastPath, NULL, szFilter);
重要的参数是第三个(lastPath)进入特定目录! 一切正常使用Windows 7,但在Windows 2000中,只有当lastPath(LPCTSTR lpszFileName)为空时,Dialog才有效(否则对话框无法打开)
任何想法!?
谢谢和问候 leon22
答案 0 :(得分:0)
好的,我发现了错误:
不要使用lpszFileName设置初始目录!
正确用法:
CFileDialog oDlg(TRUE, NULL, NULL, NULL, szFilter);
oDlg.m_ofn.lpstrInitialDir = lastPath.GetBuffer(0); // set initial dir
迎接leon22
答案 1 :(得分:0)
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来获取正确的文件夹。