我还没有编写这个代码,因为我不确定哪个是解决这个问题的最佳方法。
对于初学者,程序现在所做的只是将与程序位于同一目录中的所有文件的名称放入一个字符串数组中,然后将该数组打印出来。
我想要做的是按文件扩展名对这些进行排序。将有一个特定扩展名列表供用户选择,之后文件夹中具有该扩展名的所有文件都将返回给用户。
我只是不知道该怎么做。首先想到的是遍历向量并将每个字符串与另一个具有所需扩展名的字符串进行比较,如果匹配,则将该字符串推入另一个特定于该文件扩展名的向量中。我只需要 5 个扩展,所以我不必为每个扩展创建大量新向量。
Alternativley 我认为永远不要填充原始向量,并首先接受用户请求,然后遍历文件并将所有具有匹配扩展名的文件推送到特定向量中也可能是有意义的。一旦完成,如果他们选择另一个选项,向量将被简单地清除并重新填充新的文件名。
关于如何实际进行比较的任何提示,我对 c++ 语法不太擅长,使用不同类型的容器是否明智?
非常感谢你们愿意为我提供的任何和所有建议,非常感谢!
#include <iostream>
#include <filesystem>
#include <vector>
using namespace std;
using namespace std::tr2::sys;
void scan( path f, unsigned i = 0 )
{
string indent(i,'\t');
cout << indent << "Folder = " << system_complete(f) << endl;
directory_iterator d( f );
directory_iterator e;
vector<string>::iterator it1;
std::vector<string> fileNames;
for( ; d != e; ++d )
{
fileNames.push_back(d->path());
//print out conents without use of an array
/*cout << indent <<
d->path() << (is_directory( d->status() ) ? " [dir]":"") <<
endl;*/
//if I want to go into subdirectories
/*if( is_directory( d->status() ) )
scan( f / d->path(), i + 1 );*/
}
for(it1 = fileNames.begin(); it1 != fileNames.end(); it1++)
{
cout << *it1 << endl;
}
}
int main()
{
path folder = "..";
cout << folder << (is_directory( folder ) ? " [dir]":"") << endl;
scan( folder );
}