gpt4 book ai didi

c++ - 遍历目录

转载 作者:搜寻专家 更新时间:2023-10-31 00:05:19 24 4
gpt4 key购买 nike

有什么办法可以遍历一个目录的内容吗?我想将每个文件夹的名称存储在给定目录中。

谢谢!

最佳答案

根据您对 C++/Boost 感兴趣的标签。然后,请借this SO answer :

#include <utility>
#include <boost/filesystem.hpp>
#include <boost/foreach.hpp>

#define foreach BOOST_FOREACH
namespace fs = boost::filesystem;

fs::recursive_directory_iterator it(top), eod;
foreach (fs::path const & p, std::make_pair(it, eod)) {
if (is_directory(p)) {
...
} else if (is_regular_file(p)) {
...
} else if (is_symlink(p)) {
...
}
}

另一个版本,取自Rosetta code:

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

using namespace boost::filesystem;

int main()
{
path current_dir("."); //
boost::regex pattern("a.*"); // list all files starting with a
for (recursive_directory_iterator iter(current_dir), end;
iter != end;
++iter)
{
std::string name = iter->path().leaf();
if (regex_match(name, pattern))
std::cout << iter->path() << "\n";
}
}

关于c++ - 遍历目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2550309/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com