码迷,mamicode.com
首页 > 编程语言 > 详细

python递归获取目录下指定文件

时间:2019-11-07 15:13:32      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:document   bin   for   name   spl   get   code   递归   pat   

获取一个目录下所有指定格式的文件是实际生产中常见需求.

import os
#递归获取一个目录下所有的指定格式的文件

def get_jsonfile(path,file_list):
    dir_list=os.listdir(path)
    for x in dir_list:
        new_x=os.path.join(path,x)
        if os.path.isdir(new_x):
            get_jsonfile(new_x,file_list)
        else:
            file_tuple=os.path.splitext(new_x)
            if file_tuple[1]==.json:
                file_list.append(new_x)
    return file_list


if __name__==__main__:
    file_list=[]
    path=/Users/binwang/Documents
    get_jsonfile(path,file_list)
    for json_file in file_list:
        print(json_file)

 

python递归获取目录下指定文件

标签:document   bin   for   name   spl   get   code   递归   pat   

原文地址:https://www.cnblogs.com/wangbin2188/p/11811866.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!