2

directory_iterator我正在尝试从Visual Studio 2012 中获取绝对路径。在早期版本的 Boost 库中可以使用native_file_string(). 现在没有可用的函数成员返回绝对路径。我最终不得不将目录路径与文件名结合起来:

string         filePath = "C:\\Eigen\\CMakeLists.txt";
string         prefix   = path (filePath).parent_path().string() + "/";
vector<string> fullPaths;  // Full paths of all files in directory.

for (auto i = directory_iterator (path (filePath).branch_path()); i != directory_iterator(); ++i) 
    fullPaths.push_back (prefix + i->path().string());

有没有办法让目录迭代器能够返回完整路径?在上面的循环中,我尝试了:

auto s1 = i->path().branch_path();
auto s2 = i->path().directory_string();
auto s4 = i->path().file_string();
auto s5 = i->path().root_path();
auto s6 = i->path().parent_path();
auto s7 = i->path().string();
auto s8 = i->path().basename();
auto s9 = i->path().filename();
auto sa = i->path().root_name();
auto sb = i->path().relative_path();

并且它们都没有返回完整路径。

编辑:我注意到使用recursive_directory_iterator而不是directory_iterator会产生完整的(绝对)路径。这是设计使然吗?如果我不想要递归迭代怎么办?

4

1 回答 1

3

您可能正在寻找absolute(),这是一个非成员函数。

于 2013-03-05T16:49:36.380 回答