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)

相关推荐
道199318 分钟前
PyTorch 从小白到高级进阶教程[工业级示例](三)
人工智能·pytorch·python
测试人社区-千羽31 分钟前
智能测试的终极形态:从自动化到自主化的范式变革
运维·人工智能·python·opencv·测试工具·自动化·开源软件
锐学AI36 分钟前
从零开始学MCP(八)- 构建一个MCP server
人工智能·python
木棉知行者37 分钟前
PyTorch 核心方法:state_dict ()、parameters () 参数打印与应用
人工智能·pytorch·python
xingzhemengyou138 分钟前
python time的使用
python
码界奇点42 分钟前
基于Python与GitHub Actions的正方教务成绩自动推送系统设计与实现
开发语言·python·车载系统·自动化·毕业设计·github·源代码管理
E_ICEBLUE1 小时前
PDF vs PDF/A:区别、场景与常用转换方法(2025 全面解读)
python·pdf
岁月宁静2 小时前
🐍 Python 核心知识点:从零开始快速构建 Python 知识体系
python
C嘎嘎嵌入式开发2 小时前
deepseek-r1大模型的本地部署
人工智能·python·神经网络·机器学习
柯南二号2 小时前
【大前端】【Android】用 Python 脚本模拟点击 Android APP —— 全面技术指南
android·前端·python