摘要:void CFindFileDlg::find(CString dir) { CFileFind ff; CString path; //MessageBox(dir); if(dir.Right(1)!="//") dir+="//"; dir+="*.*"; BOOL res=ff.FindFile(dir,0); while(res) { res=ff.FindNextFile(); path=ff.GetFilePath(); { if(path.Right(3)=="tmp"||path.Right(3)
阅读全文