zl程序教程

您现在的位置是:首页 >  后端

当前栏目

python通过os.walk() 遍历出多级目录下所有文件绝对路径

PythonOS文件遍历 通过 目录 所有 多级
2023-09-14 09:08:35 时间

代码如下

将遍历出来的路径全部添加到列表中:

def get_all_abs_path(source_dir):
    path_list = []
    for fpathe, dirs, fs in os.walk(source_dir):
        for f in fs:
            p = os.path.join(fpathe, f)
            path_list.append(p)
    return path_list