C++ 文件路径下图片读取

给定一个文件路径,将路径下的图片读入到一个Vector中:

#include 

void getFiles(string path, vector& files)
{
	//文件句柄
	long long hFile = 0;
	//文件信息
	struct _finddata_t fileinfo;
	string p;
	if ((hFile = _findfirst(p.assign(path).append("\\*").c_str(), &fileinfo)) != -1) 
	{
		do {
			//如果是目录,迭代之
			//如果不是,加入列表
			if ((fileinfo.attrib & _A_SUBDIR)) 
			{
				if (strcmp(fileinfo.name, ".") != 0 && strcmp(fileinfo.name, "..") != 0) 
				{
					getFiles(p.assign(path).append("\\").append(fileinfo.name), files);
				}
			}
			else 
			{
				files.push_back(p.assign(path).append("\\").append(fileinfo.name));
				//files.push_back(fileinfo.name);
			}
		} while (_findnext(hFile, &fileinfo) == 0); _findclose(hFile);
	}
}

特别注意: long long hFile = 0 的定义,在Win10系统下,使用long hFile = 0会报错。

你可能感兴趣的:(文件读取,C++)