判断是否是空文件夹

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;
}

 

你可能感兴趣的:(VC++文件操作)