//获取目录下的所有文件名称
vector<string> getFileName(string path) {
vector<string> res;
char filepath[255];
strcpy_s(filepath,path.c_str());
long file;
int filenums;
struct _finddata_t find;
//"C:\\Program Files\\data\\"
_chdir(filepath);
if ((file = _findfirst("*.*", &find)) == -1L) {
return res;
}
filenums = 0;
while (_findnext(file,&find) == 0){
filenums++;
string filename = find.name;
if (filename.rfind(".TXT") != string::npos) {
string fileExt = strstr(filename.c_str(), ".TXT");
if (fileExt.compare(".TXT") == 0) {
res.push_back(filename); //存入结果数组
}
}
}
//
return res;
}