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

代码如下

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

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

 

posted @ 2019-04-10 15:10  ZhuGaochao  阅读(1248)  评论(0编辑  收藏  举报