将文件夹中的图像路径自动生成txt文件(便于opencv遍历处理图像)

代码:

#include<iostream>
#include<vector>
#include<io.h>
#include<fstream> using namespace std; ofstream off("img_pow_sta.txt", ios::out);
vector<int> number; int num = ; void getFiles(string path, vector<string>& files)
{
//文件句柄
long hFile = ;
//文件信息
struct _finddata_t fileinfo;
string p;
if ((hFile = _findfirst(p.assign(path).append("\\*").c_str(), &fileinfo)) != -)
{
do
{
//如果是目录,迭代之
//如果不是,加入列表
if ((fileinfo.attrib & _A_SUBDIR))
{
if (strcmp(fileinfo.name, ".") != && strcmp(fileinfo.name, "..") != ) {
getFiles(p.assign(path).append("\\").append(fileinfo.name), files);
num++;
}
}
else
{
files.push_back(p.assign(path).append("\\").append(fileinfo.name));
number.push_back(num);
}
} while (_findnext(hFile, &fileinfo) == );
_findclose(hFile);
}
} int main() {
char* filepath = "D:\\Desktop\\people\\people";
vector<string> files;
getFiles(filepath, files);
char str[];
int size = files.size();
for (int i = ; i < size; i++) {
off << files[i].c_str();
off << " ";
//off << number[i];
off << "\n";
}
off.close();
return ;
}
上一篇:UIKit 框架之UITableView一


下一篇:【原创】web端高德地图javascript API的调用