gpt4 book ai didi

c++ - boost::filesystem::recursive_directory_iterator 带过滤器

转载 作者:IT老高 更新时间:2023-10-28 21:43:53 26 4
gpt4 key购买 nike

我需要递归地从目录及其子目录中获取所有文件,但不包括几个目录。我知道他们的名字。是否可以使用 boost::filesystem::recursive_directory_iterator ?

最佳答案

是的,在遍历目录时,您可以测试排除列表中的名称并使用递归迭代器的 no_push() 成员来防止它进入这样的目录,例如:

void selective_search( const path &search_here, const std::string &exclude_this_directory)
{
using namespace boost::filesystem;
recursive_directory_iterator dir( search_here), end;
while (dir != end)
{
// make sure we don't recurse into certain directories
// note: maybe check for is_directory() here as well...
if (dir->path().filename() == exclude_this_directory)
{
dir.no_push(); // don't recurse into this directory.
}

// do other stuff here.

++dir;
}
}

关于c++ - boost::filesystem::recursive_directory_iterator 带过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18233640/

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