MFC——文件选择对话框
2020-12-30 14:32
标签:windows mfc class 对话 文件类型 only 打开 默认 lin MFC——文件选择对话框 标签:windows mfc class 对话 文件类型 only 打开 默认 lin 原文地址:https://www.cnblogs.com/ndyxb/p/13021425.html //文件类型过滤
const TCHAR pszFilter[] = _T("EXE File (*.exe)|*.exe|Dynamic-link library (*.dll)|*.dll|Any Files (*.*)|*.*|");
//第一个参数为TRUE是打开文件,为FALSE是文件另存为
CFileDialog dlg(TRUE, NULL, NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
pszFilter, this);
dlg.m_ofn.lpstrInitialDir = _T("c:\\WINDOWS\\"); //设置对话框默认呈现的路径
if (dlg.DoModal() == IDOK)
{
//获取选中的文件的路径
CString strFilePath = dlg.GetPathName();
}