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

Posted 飞翔的鲲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python系列python os.walk去掉特定目录相关的知识,希望对你有一定的参考价值。

Date: 2023.2.10


文章目录

1、实现方法

在python文件遍历的时候,有时候根目录下面的特定目录不需要遍历,需要排查掉,可以采用not in的方法原地修改遍历目录。

2、示例

实现方法:

allfiles = []
def get_raw_data(rawdir):
	for root, dirs, files in os.walk

以上是关于Python系列python os.walk去掉特定目录的主要内容,如果未能解决你的问题,请参考以下文章

python中的os.walk

python os.walk()代码详解

Python 之 os.walk()

python os.walk()

Python os.walk() 方法遍历文件目录

Python os.walk