C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – boost :: filesystem :: recursive_directory_iterator带过滤器大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要递归地从目录中获取所有文件,它是子目录,但不包括多个目录.我知道他们的名字.是否可以使用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带过滤器全部内容,希望文章能够帮你解决c – boost :: filesystem :: recursive_directory_iterator带过滤器所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。