判断一个文件夹是否为空

时间:2021-04-07 21:37:42

一、 原理
遍历文件夹,除“.”和“..”以外,还有文件,说明不为空。

二、实现

1. Platform SDK的两个函数:FindFirstFile()和FindNextFile()

判断一个文件夹是否为空
判断一个文件夹是否为空


BOOL IsFolderEmpty(WCHAR* szPath)
{
WCHAR szFind[MAX_PATH] = {0};
WIN32_FIND_DATA findFileData;
BOOL bRet = TRUE;

wcscpy_s(szFind,MAX_PATH,szPath);
wcscat_s(szFind,MAX_PATH,L"\\*.*"); //这里一定要指明通配符,不然不会读取所有文件和目录

HANDLE hFind = ::FindFirstFileW(szFind, &findFileData);
if (INVALID_HANDLE_VALUE == hFind)
{
return TRUE;
}
while (bRet)
{
//一旦找到'.'或"..",则不为空
if (findFileData.cFileName[0] != L'.')
{
::FindClose(hFind);
return FALSE;
}
bRet = ::FindNextFileW(hFind, &findFileData);
}
::FindClose(hFind);
return TRUE;
}
 2. MFC的CFileFind类

BOOL IsFolderEmpty(CString strPath)
{
CString str = strPath + L"\\*.*";
CFileFind ff;
BOOL bFound;
bFound = ff.FindFile(str.GetString());
while(bFound)
{
bFound = ff.FindNextFile();
if(!ff.IsDots())
{
return FALSE;
}
}
ff.Close();
return TRUE;
}