MFC文件夹打开,文件打开,文件夹下文件遍历(转载)

原文链接:http://blog.sina.com.cn/s/blog_4a08244901018g5z.html  (原文也是转载的)


MFC编程中经常会需要用到选择目录和选择文件的界面,以下总结一下本人常用的这两种对话框的生成方法:

选择目录对话框

MFC文件夹打开,文件打开,文件夹下文件遍历(转载) // 选择目录按钮
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
void  CDcPackerDlg::OnBnClickedDecgen()
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
{
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 char szPath[MAX_PATH]; //存放选择的目录路径 
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 CString str;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) ZeroMemory(szPath,
 sizeof(szPath));
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) BROWSEINFO bi;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.hwndOwner
 = m_hWnd;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.pidlRoot
 = NULL;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.pszDisplayName
 = szPath;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.lpszTitle
 = "请选择需要打包的目录:";
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.ulFlags
 = 0;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.lpfn
 = NULL;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.lParam
 = 0;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) bi.iImage
 = 0;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 //弹出选择目录对话框
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 LPITEMIDLIST lp = SHBrowseForFolder(&bi);
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 if(lp && SHGetPathFromIDList(lp, szPath))
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 {
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) str.Format(
"选择的目录为 %s", szPath);
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) AfxMessageBox(str);
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) }

MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 else 
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) AfxMessageBox(
"无效的目录,请重新选择");
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) }


void CBianLiDlg::OnSelectFolder()
{
 CString str;
 BROWSEINFO bi;
 
char name[MAX_PATH];
 ZeroMemory(
&bi,sizeof(BROWSEINFO));
 bi.hwndOwner
 = GetSafeHwnd();
 bi.pszDisplayName
 = name;
 bi.lpszTitle
 = "Select folder";
 
//bi.ulFlags = BIF_USENEWUI;
 
bi.ulFlags = BIF_RETURNFSANCESTORS;
 LPITEMIDLIST idl
 = SHBrowseForFolder(&bi);
 
if(idl == NULL)
 
return;
 SHGetPathFromIDList(idl, str.GetBuffer(MAX_PATH));
 str.ReleaseBuffer();
 m_root
 = str;//为对话框中与一编辑框对应的CString型变量,保存并显示选中的路径。
 if(str.GetAt(str.GetLength()-1)!='/')
 m_root
+="/";
 UpdateData(FALSE);
 
 }



文件遍历

void CBianLiDlg::FileSearch(CString root)
{  // root 为目录名
 CFileFind ff;
 CString FilePath;
 
if (root.Right(1)!="/")
 {
 root
+="/";
 }

 root
+="*.*";
 BOOL res
=ff.FindFile(root);
 
while (res)
 {
 res
=ff.FindNextFile();
 FilePath
=ff.GetFilePath();
 
if (ff.IsDirectory() && !ff.IsDots())// 找到的是文件夹
 {
 FileSearch(FilePath);
// 递归
 
}

 
else if (!ff.IsDirectory() && !ff.IsDots())// 找到的是文件
 {
 m_ff
+=FilePath;
 m_ff
+=" ";
 }

 }

 }



多文件选择

CFileDialog Dlg(TRUE,NULL,NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT|OFN_ALLOWMULTISELECT);
 
if(Dlg.DoModal()==IDOK)
 {
 POSITION pos
 = Dlg.GetStartPosition();
 
while(pos)
 {
 CString szFileName
 = Dlg.GetNextPathName(pos);
 AfxMessageBox(szFileName);
 }
 
 }




选择文件对话框

MFC文件夹打开,文件打开,文件夹下文件遍历(转载) CString CDcPackerDlg::BootOpenDialog()  // 返回选择的文件名称
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
{
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) CString strFile
 = _T("");
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) CFileDialog dlgFile(TRUE, NULL, NULL, OFN_HIDEREADONLY, _T(
"Describe Files (*.cfg)|*.cfg|All Files (*.*)|*.*||"), NULL);
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 if (dlgFile.DoModal())
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 {
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) strFile
 = dlgFile.GetPathName();
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) }

MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 return strFile;
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) }

MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
// 加载文件按钮
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
void  CDcPackerDlg::OnBnClickedSelectdec()
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
{
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 // TODO: Add your control notification handler code here
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 m_strDescPath = ""; //类的成员变量
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 //"打开文件"对话框,选择文件,返回其路径
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
 m_strDescPath = BootOpenDialog();
MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) MFC文件夹打开,文件打开,文件夹下文件遍历(转载)
MFC文件夹打开,文件打开,文件夹下文件遍历(转载) }

你可能感兴趣的:(C++)