发新帖

[C/VC/C++] 获取目录下的所有文件名,并获取指定扩展名文件

零下一度 2019-9-11 1055
//获取目录下的所有文件名称
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;
}


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1