python广度遍历文件夹
Posted 行之间
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python广度遍历文件夹相关的知识,希望对你有一定的参考价值。
import os
from collections import deque
path = r"E:Python"
queue = deque([])#队列
queue.append(path)
while len(queue) != 0:
path = queue.popleft()#弹出的值
filelist = os.listdir(path)#遍历路径
for filename in filelist:
filepath = os.path.join(path,filename)
if os.path.isdir(filepath):
print("文件夹",filename)
queue.append(filepath)
else:
print("文件",filename)
以上是关于python广度遍历文件夹的主要内容,如果未能解决你的问题,请参考以下文章