基於Python怎麼製作一個檔案解壓縮工具

PHPz
發布: 2023-05-13 13:43:21
轉載
1701 人瀏覽過

經常因為各種壓縮格式的不一樣用到文件的解壓縮時就需要下載不同的解壓縮工具去處理不同的文件,以至於桌面上的壓縮工具就有三四種,於是使用python做了一個包含各種常見格式的檔案解壓縮的小工具。

基於Python怎麼製作一個檔案解壓縮工具

常見的壓縮格式主要是下面的四種格式:

zip 格式的壓縮文件,一般使用360壓縮軟體進行解壓縮。

tar.gz 格式的壓縮文件,一般是在linux系統上面使用tar指令進行解壓縮。

rar 格式的壓縮文件,一般使用rar壓縮軟體進行解壓縮。

7z 格式的壓縮文件,一般使用7-zip壓縮軟體進行解壓縮。

導入zip格式的解壓縮處理的非標準函式庫。

import os
import zipfile as zip
登入後複製

寫zip解壓縮格式的檔案壓縮函數。

def do_zip(source_, target_file):
    '''
    zip文件压缩
    :param source_: 原始文件路径
    :param target_file: 目标文件路径
    :return:
    '''
    zip_file = zip.ZipFile(target_file, 'w')
    pre_len = len(os.path.dirname(source_))
    for parent, dirnames, filenames in os.walk(source_):
        for filename in filenames:
            print(f'{filename}')
            path_file = os.path.join(parent, filename)
            arcname = path_file[pre_len:].strip(os.path.sep)
            zip_file.write(path_file, arcname)

    zip_file.close()
登入後複製

寫zip解壓縮格式的檔案解壓縮函數。

def un_zip(source_file, target_):
    '''
    zip文件解压缩
    :param source_file: 原始文件路径
    :param target_: 目标文件路径
    :return:
    '''
    zip_file = zip.ZipFile(source_file)
    if os.path.isdir(target_):
        pass
    else:
        os.mkdir(target_)
    for names in zip_file.namelist():
        zip_file.extract(names, target_)
    zip_file.close()
登入後複製

匯入7z格式的解壓縮處理的非標準函式庫。

import py7zr
登入後複製

寫7z解壓縮格式的檔案壓縮函數。

def do_7z(source_, target_file):
    '''
    7z文件压缩
    :param source_:
    :param target_file:
    :return:
    '''
    with py7zr.SevenZipFile(target_file, 'r') as file:
        file.extractall(path=source_)
登入後複製

寫7z解壓縮格式的檔案解壓縮函數。

def un_7z(source_file, target_):
    '''
    7z文件解压缩
    :param source_file:
    :param target_:
    :return:
    '''
    with py7zr.SevenZipFile(source_file, 'w') as file:
        file.writeall(target_)
登入後複製

導入rar格式的解壓縮處理的非標準函式庫。

import rarfile as rar
登入後複製

#編寫rar解壓縮格式的檔案解壓縮函數。

def un_rar(source_file, target_):
    '''
    rar文件解压缩
    :param source_file: 原始文件
    :param target_: 目标文件路径
    :return:
    '''
    obj_ = rar.RarFile(source_file.decode('utf-8'))
    obj_.extractall(target_.decode('utf-8'))
登入後複製

接下來開始進入正題了,首先使用print函數列印一下選單選項,可以讓使用者在啟動軟體後進行選單的選擇。

print('==========PYTHON工具:文件解压缩软件==========')
print('说明:目前支持zip、7z、rar格式')
print('1、文件解压缩格式:zip/rar/7z')
print('2、文件操作类型(压缩/解压):Y/N')
print('3、文件路径选择,需要输入相应的操作文件路径')
print('==========PYTHON工具:文件解压缩软件==========')
登入後複製

使用input函數接收使用者輸入的檔案解壓縮格式。

format_ = input('请输入文件解压缩的格式:\n')
登入後複製

使用input函數接收使用者輸入的檔案操作類型(壓縮/解壓縮)。

type_ = input('请输入文件操作的类型:\n')
登入後複製

使用input函數接收使用者輸入的需要操作的檔案路徑。

source_ = input('请输入原始文件的存储路径(文件或目录):\n')
登入後複製

使用input函數接收使用者輸入的產生的新檔案的目標路徑。

target_ = input('请输入目标文件的存储路径(文件或目录):\n')
登入後複製

為了保持輸入的彈性,加入不同格式不同作業類型的業務判斷。

if format_ == 'zip' and type_ == 'Y':
    do_zip(source_, target_)
elif format_ == 'zip' and type_ == 'N':
    un_zip(source_, target_)
elif format_ == 'rar' and type_ == 'Y':
    un_zip(source_, target_)
elif format_ == 'rar' and type_ == 'N':
    un_zip(source_, target_)
elif format_ == '7z' and type_ == 'Y':
    un_zip(source_, target_)
elif format_ == '7z' and type_ == 'N':
    un_zip(source_, target_)
登入後複製

目前功能點是做了三種格式,後期若是需要可能會擴充升級目前的版本。

以上是基於Python怎麼製作一個檔案解壓縮工具的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板