在文件的读取处理中,我们通常会遇到读取一个文件夹下所有文件的情形,那么若要读取该文件夹下的所有文件,我们则需要获取文件夹下的所有文件名。
下面介绍一种C++下获取一个文件夹下的所有文件名的方法,具体代码如下:
void get_file_names(std::string path_name, std::vector<std::string>& file_names)
{
long h_file = 0;
struct _finddata_t fileinfo;
std::string p;
if ((h_file = _findfirst((path_name).append("\\*").c_str(), &fileinfo)) != -1)
{
do
{
if ( ( & _A_SUBDIR))
{
if (strcmp(, ".") != 0 && strcmp(, "..") != 0)
{
get_file_names((path_name).append("\\").append(), file_names);
}
}
else
{
file_names.push_back((path_name).append("\\").append() );
}
} while (_findnext(h_file, &fileinfo) == 0);
}
return;
}
2017.05.11