boost文件系统directory_iterator

时间:2016-11-25 09:40:21

标签: c++ boost boost-filesystem

以下代码以递归方式迭代给定目录,并每次以相同顺序打印其内容。

是否可以改变目录迭代器以随机方式打印目录内容(不使用向量来存储结果然后随机打印矢量内容)?

#include <string>

#include <iostream>
#include <boost/filesystem.hpp>

using namespace std;

int main(int argc, char** argv)
{
  boost::filesystem::path dataPath("/home/test/");
  boost::filesystem::recursive_directory_iterator endIterator;

  // Traverse the filesystem and retrieve the name of each root object found
  if (boost::filesystem::exists(dataPath) && boost::filesystem::is_directory(dataPath)) {
    for (static boost::filesystem::recursive_directory_iterator directoryIterator(dataPath); directoryIterator != endIterator;
     ++directoryIterator) {
      if (boost::filesystem::is_regular_file(directoryIterator->status())) {

        std::string str = directoryIterator->path().string();
        cout << str << endl;
        }
    }
}

}

1 个答案:

答案 0 :(得分:1)

大多数操作系统(例如Windows“FindFirstFile”)不会以任何特定顺序返回条目,因此无法根据需要对其进行排序。您最好的选择是自己进行订购/洗牌。