CFileFind遍历目录 查找 删除等

void BrowseDir(CString strDir)
{
CFileFind ff;
CString szDir = strDir;


if(szDir.Right(1) != "\\")
szDir += "\\";


szDir += "*.*";


BOOL res = ff.FindFile(szDir);
while(res)
{
res = ff.FindNextFile();
if(ff.IsDirectory() && !ff.IsDots())
{
//如果是一个子目录,用递归继续往深一层找
BrowseDir(ff.GetFilePath());
}
else if(!ff.IsDirectory() && !ff.IsDots())
{
//显示当前访问的文件
CStatic* p = (CStatic*)GetDlgItem(IDC_STATIC_FILE);
CString str;
str.Format("当前访问的文件:%s",ff.GetFilePath());
p->SetWindowText(str);
Sleep(500);
}
}
ff.Close();//关闭
}


void SearchFile(CString strDir,CString strFile)
{
CFileFind ff;
CString szDir = strDir;


if(szDir.Right(1) != "\\")
szDir += "\\";


szDir += "*.*";


BOOL res = ff.FindFile(szDir);
while(res)
{
res = ff.FindNextFile();
if(ff.GetFileName()==strFile)
{
//找到了,加入列表框中
m_ctrlFilesList.AddString(ff.GetFilePath());
}
if(ff.IsDirectory() && !ff.IsDots())
{
//如果是一个子目录,用递归继续往深一层找
SearchFile(ff.GetFilePath(),strFile);
}
}
ff.Close();//关闭
}


void RecursiveDelete(CString szPath)
{
CFileFind ff;
CString path = szPath;


if(path.Right(1) != "\\")
path += "\\";




path += "*.*";
BOOL res = ff.FindFile(path);




while(res)
{
res = ff.FindNextFile();
//是文件时直接删除
AfxMessageBox(ff.GetFilePath());
if (!ff.IsDots() && !ff.IsDirectory())
DeleteFile(ff.GetFilePath());
else if (ff.IsDots())
continue;
else if (ff.IsDirectory())
{
path = ff.GetFilePath();
//是目录时继续递归,删除该目录下的文件
RecursiveDelete(path);
//目录为空后删除目录
RemoveDirectory(path);
}
}
//最终目录被清空了,于是删除该目录
RemoveDirectory(szPath);
 
}

你可能感兴趣的:(CFileFind遍历目录 查找 删除等)