在實際的業務開發中會經常遇到對檔案進行相關的操作,比如新建資料夾或檔案,移動、刪除資料夾或檔案,檔案的壓縮與解壓縮等等!!下面就其中的壓縮與解壓縮進行**演示!
import osimport glob
import zipfile
def unzip_file(dir_path):# 解壓縮後檔案的存放路徑
unzip_file_path = r"c:\users\desktop\新建資料夾"
# 找到壓縮資料夾
dir_list = glob.glob(dir_path)
if dir_list:
# 迴圈zip資料夾
for dir_zip in dir_list:
# 以讀的方式開啟
with zipfile.zipfile(dir_zip, 'r') as f:
for file in f.namelist():
f.extract(file, path=unzip_file_path) # 有密碼時需要傳入第三個引數pwd
os.remove(dir_zip)
unzip_file(r"c:\users\desktop\新建資料夾\*.zip")
# 這兒的 dir_path 只是其中的一種路徑處理方式,可以根據自己的需求行進實際操作
壓縮目標目錄下的所有檔案
def zip_files(dir_path, zip_path):""":param dir_path: 需要壓縮的檔案目錄
:param zip_path: 壓縮後的目錄
:return:
"""with zipfile.zipfile(zip_path, "w", zipfile.zip_deflated) as f:
for root, _, file_names in os.walk(dir_path):
for filename in file_names:
f.write(os.path.join(root, filename), filename)
關於壓縮和解壓縮
從http www.icsharpcode.net 首先需要在專案裡引用sharpziplib.dll。然後修改其中的關於壓縮和解壓縮的類。實現原始碼如下 壓縮檔案 using system using system.io using icsharpcode.sharpziplib.checksum...
壓縮和解壓縮OLEVARIANT
uses zlibex procedure varianttostream const v olevariant stream tstream varp pointer begin stream.position 0 stream.size vararrayhighbound v,1 vararra...
C 壓縮和解壓縮
話不多說,直接上 最後有重要說明!哦對了,用的是icsharpcode.sharpziplib.zip 這個東西 壓縮 先宣告個全域性變數吧 附件打包的變數 zipoutputstream zos null 下面就是壓縮的 了 protected void btnfile click object ...