經常因為各種壓縮格式的不一樣用到文件的解壓縮時就需要下載不同的解壓縮工具去處理不同的文件,以至於桌面上的壓縮工具就有三四種,於是使用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中文網其他相關文章!