C++遍历文件夹及其下所有文件和子文件夹-----递归算法

项目用到64位,很多算法32位的不好用。
一个简单的64位递归算法;

#include 
#include 
#include 

using namespace std;

vector vec_path;

bool TraverseDirectory(std::string path)
{
	__int64  Handle;
	struct __finddata64_t  FileInfo;
	string strFind = path + "\\*";

	if ((Handle = _findfirst64(strFind.c_str(), &FileInfo)) == -1L)
	{
		printf("没有找到匹配的项目\n");
		return false;
	}
	do
	{
		//判断是否有子目录
		if (FileInfo.attrib & _A_SUBDIR)
		{
			//判断是子文件夹
			//下面的判断条件很重要,过滤 . 和 ..
			if ((strcmp(FileInfo.name, ".") != 0) && (strcmp(FileInfo.name, "..") != 0))
			{
				string newPath = path + "\\" + FileInfo.name;
				TraverseDirectory(newPath);
			}
		}
		else	//判断是文件
		{
			string newPath = path + "\\" + FileInfo.name;
			//自定义操作
			vec_path.push_back(newPath);
		}
	} while (_findnext64(Handle, &FileInfo) == 0);

	_findclose(Handle);
	return true;
}
int main()
{
	string input_path = "E:\\cascade\\Paijiu_long\\indoorCVPR_09\\Images\\";
	//调用递归算法
	TraverseDirectory(input_path);
	
	return 0;
}

你可能感兴趣的:(C/C++)