摘要: Python os.walk 停止遍历满足条件的文件夹 import os for here, dirs, files in os.walk(startdir, topdown=True): dirs[:] = [] 注意:dirs[:] = [] 不能改为 dirs = [] 阅读全文
posted @ 2021-12-31 17:56 ibingshan 阅读(256) 评论(0) 推荐(0) 编辑