python 解压指定目录的所有zip文件

复制代码
# -*- coding: utf-8 -*-
import sys
import time
import zipfile
import os
from datetime import datetime
from colorama import Fore, Style


def fake_progress_bar():
    total_progress = 50
    for i in range(total_progress + 1):
        time.sleep(0.01)  # 模拟解压文件所需的时间
        sys.stdout.write('\r[' + '#' * i + '-' * (total_progress - i) + ']')
        sys.stdout.flush()


def unzip_dir(directory):
    # 获取当前时间
    try:
        current_time = datetime.now()

        # 将时间格式化为字符串
        time_str = current_time.strftime("%Y%m%d%H%M%S")
        # 指定包含ZIP文件的目录
        # directory = 'data'

        # 遍历指定目录中的文件
        for filename in os.listdir(directory):
            if filename.endswith('.zip'):

                file_path = os.path.join(directory, filename)
                with zipfile.ZipFile(file_path, 'r') as zip_ref:
                    # 指定解压缩目标目录
                    extraction_path = os.path.join(directory, directory + "-" + time_str, filename)
                    os.makedirs(extraction_path.replace(".zip", ""), exist_ok=True)

                    # 使用tqdm进行进度显示

                    for info in zip_ref.infolist():
                        # 解决文件名编码问题
                        file_name = info.filename.encode('cp437').decode('gbk')
                        with zip_ref.open(info) as source, open(
                                os.path.join(extraction_path.replace(".zip", ""), file_name), 'wb') as target:
                            target.write(source.read())

                        # 调用模拟进度函数
                        fake_progress_bar()
                        print(f'解压 {filename} 到 {extraction_path.strip(".zip")}')
    except Exception as e:
        print(e)


if __name__ == '__main__':
    while True:
        source_directory = input(
            Fore.LIGHTGREEN_EX + "===== 请输入文件名称或输入 'q' 退出 =====\n:" + Style.RESET_ALL)  # 使用黄色文本
        if source_directory.lower() == 'q':
            print("已退出!")
            break
        if not os.path.exists(source_directory):
            print(Fore.RED + "源目录或目标目录不存在!!!\n" + Style.RESET_ALL)  # 使用红色文本
        else:
            print("开始解压:{}".format(source_directory))
            unzip_dir(source_directory)
            print("解压完毕!!!")

==========================================================

修改了一下!!!递归所有文件夹里面的zip

复制代码
# -*- coding: utf-8 -*-
import sys
import time
import zipfile
import os
from datetime import datetime
from colorama import Fore, Style


def fake_progress_bar():
    total_progress = 50
    for i in range(total_progress + 1):
        time.sleep(0.01)  # 模拟解压文件所需的时间
        sys.stdout.write('\r[' + '#' * i + '-' * (total_progress - i) + ']')
        sys.stdout.flush()


def unzip_dir(directory):
    try:
        # 获取当前时间
        current_time = datetime.now()

        # 将时间格式化为字符串
        time_str = current_time.strftime("%Y%m%d%H%M%S")

        # 遍历指定目录及其子目录中的所有ZIP文件
        for root, _, files in os.walk(directory):
            for filename in files:
                if filename.endswith('.zip'):
                    file_path = os.path.join(root, filename)
                    with zipfile.ZipFile(file_path, 'r') as zip_ref:
                        # 指定解压缩目标目录
                        extraction_path = os.path.join(root, filename + "-" + time_str)
                        os.makedirs(extraction_path, exist_ok=True)

                        # 使用tqdm进行进度显示
                        for info in zip_ref.infolist():
                            # 解决文件名编码问题
                            file_name = info.filename.encode('cp437').decode('gbk')
                            with zip_ref.open(info) as source, open(
                                    os.path.join(extraction_path, file_name), 'wb') as target:
                                target.write(source.read())

                            # 调用模拟进度函数
                            fake_progress_bar()
                            print(f'解压 {filename} 到 {extraction_path}')
    except Exception as e:
        print(e)


if __name__ == '__main__':
    while True:
        source_directory = input(
            Fore.LIGHTGREEN_EX + "===== 请输入文件夹路径或输入 'q' 退出 =====\n:" + Style.RESET_ALL)  # 使用黄色文本
        if source_directory.lower() == 'q':
            print("已退出!")
            break
        if not os.path.exists(source_directory):
            print(Fore.RED + "源目录或目标目录不存在!!!\n" + Style.RESET_ALL)  # 使用红色文本
        else:
            print("开始解压文件夹:{}".format(source_directory))
            unzip_dir(source_directory)
            print("解压完毕!!!")

附件为,打包好的exe,可以直接执行。(https://download.csdn.net/download/li13148023/88492399)

相关推荐
酷飞飞5 小时前
Python网络与多任务编程:TCP/UDP实战指南
网络·python·tcp/ip
数字化顾问6 小时前
Python:OpenCV 教程——从传统视觉到深度学习:YOLOv8 与 OpenCV DNN 模块协同实现工业缺陷检测
python
学生信的大叔7 小时前
【Python自动化】Ubuntu24.04配置Selenium并测试
python·selenium·自动化
诗句藏于尽头9 小时前
Django模型与数据库表映射的两种方式
数据库·python·django
智数研析社9 小时前
9120 部 TMDb 高分电影数据集 | 7 列全维度指标 (评分 / 热度 / 剧情)+API 权威源 | 电影趋势分析 / 推荐系统 / NLP 建模用
大数据·人工智能·python·深度学习·数据分析·数据集·数据清洗
扯淡的闲人9 小时前
多语言编码Agent解决方案(5)-IntelliJ插件实现
开发语言·python
moxiaoran57539 小时前
Flask学习笔记(一)
后端·python·flask
秋氘渔10 小时前
迭代器和生成器的区别与联系
python·迭代器·生成器·可迭代对象
Gu_shiwww10 小时前
数据结构8——双向链表
c语言·数据结构·python·链表·小白初步
Dxy123931021611 小时前
python把文件从一个文件复制到另一个文件夹
开发语言·python