欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

判断是否是空文件夹

程序员文章站 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;
}

 

相关标签: VC++文件操作