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)

おすすめ

転載: www.cnblogs.com/zxfei/p/12032149.html