mfc判断目录是否为空
原创
©著作权归作者所有:来自51CTO博客作者ives404的原创作品,请联系作者获取转载授权,否则将追究法律责任
BOOL IsFolderEmpty(string path)
{
string str = path + "\\*.*";
CFileFind ff;
BOOL bFound;
bFound = ff.FindFile(str.c_str());
while (bFound)
{
bFound = ff.FindNextFile();
if (!ff.IsDots())
{
return FALSE;
}
}
ff.Close();
return TRUE;
}
留待后查,同时方便他人