python Python:遍历特定文件夹名称的目录树

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python:遍历特定文件夹名称的目录树相关的知识,希望对你有一定的参考价值。

all_dirs = []
for root, dirs, files in os.walk('.'):
    dirs[:] = [os.path.abspath(os.path.join(root, d)) for d in dirs if os.path.basename(d).startswith('_')]
    all_dirs += dirs

以上是关于python Python:遍历特定文件夹名称的目录树的主要内容,如果未能解决你的问题,请参考以下文章

python遍历特定目录的深度问题

python 遍历文件夹下的特定类型文件

Python系列python os.walk去掉特定目录

Python - Os.walk循环遍历不同驱动器中的目录列表

Python封装一个函数接受文件夹的名称作为输入参数,打印该文件夹中的的全部路程信息(遍历路径)

Python之glob模块进行文件匹配及遍历