CFileFind 遍历文件

来源:互联网 发布:ubuntu systemd 安装 编辑:程序博客网 时间:2024/04/30 15:48
void FindFile(LPCTSTR lpfile){CFileFind finder;BOOL bl=finder.FindFile(lpfile);// 当前目录while(bl){bl=finder.FindNextFile();if(finder.IsDots())// 当前目录和上级目录{}else if(finder.IsDirectory())// 子目录{CString cstemp;cstemp.Format("%s",finder.GetFilePath());cstemp+="\\*.*";FindFile((LPCTSTR)cstemp);}else{finder.GetFilePath();// 文件}}}

原创粉丝点击