吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2412|回复: 0
收起左侧

[Python 转载] 【Python】【笔记】 查找该路径下(包含子文件夹内)所有的某格式文件

[复制链接]
hustlzp 发表于 2019-1-14 22:08
[Python] 纯文本查看 复制代码
import os
def find_ext(start_dir , ext_list):
    os.chdir(start_dir)
    cur_dir = os.listdir(os.getcwd())
    for each_file in cur_dir:
        if os.path.splitext(each_file)[1] in ext_list:
            result_list.append(os.getcwd() + os.sep + each_file + os.linesep)  # 使用os.sep是程序更标准
        if os.path.isdir(each_file):
            find_ext(each_file , ext_list)  # 递归调用
            os.chdir(os.pardir)  # 递归调用后切记返回上一层目录

ext = ['.avi','.mp4','.rmvb','.MP4','.flv','.mkv']
dir = r'F:鱼c光盘合集'
result_list = []
find_ext(dir , ext)
with open('result.txt','w') as f:
    f.writelines(result_list)

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-12-2 10:06

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表