温馨提示×

如何在Python中快速解压zip

小樊
84
2024-12-07 13:36:39
栏目: 编程语言

在Python中,您可以使用内置的zipfile库来快速解压ZIP文件

import zipfile

def unzip(source_file, dest_path):
    with zipfile.ZipFile(source_file, 'r') as zip_ref:
        zip_ref.extractall(dest_path)
        print(f"文件 {source_file} 已经解压到 {dest_path}")

# 使用示例
source_file = "example.zip"  # 您要解压的ZIP文件路径
dest_path = "extracted_files"  # 您想要将解压后的文件放置的目录路径
unzip(source_file, dest_path)

这个unzip函数接受两个参数:source_file(ZIP文件的路径)和dest_path(用于解压文件的目标目录)。函数使用zipfile.ZipFile打开ZIP文件,并使用extractall()方法将其内容解压到指定的目录。完成后,它会打印一条消息确认文件已成功解压。

0