python 遍历多层文件夹下文件

核心代码

之前写的以问题,不需要进行递归操作,下面的已经修改。
感谢 @Thank_T_F @qq_14840287 @DongEnLai_CodeNice指出。

import os
#遍历文件夹   
def iter_files(rootDir):
    #遍历根目录
    for root,dirs,files in os.walk(rootDir):
        for file in files:
            file_name = os.path.join(root,file)
            print(file_name)

os.walk函数

简直是简单粗暴又好用!

你可能感兴趣的:(----Python)