判断是否是空文件夹
程序员文章站
2022-07-05 11:06:03
...
1、代码:返回true,则为空文件夹。
bool IsFolderEmpty(CString strPath)
{
CFileFind ff;
bool bRet = false;
CString strFilePaht = strPath + "\\*.*";
bRet = ff.FindFile(strFilePaht);
while (bRet)
{
bRet = ff.FindNextFile();
if (!ff.IsDots())
{
ff.Close();
return false;
}
}
ff.Close();
return true;
}