欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Python中使用tarfile壓縮、解壓tar歸檔文件示例

 更新時間:2015年04月05日 09:45:24   投稿:junjie  
這篇文章主要介紹了Python中使用tarfile壓縮、解壓tar歸檔文件示例,本文直接給出解壓和壓縮代碼示例,需要的朋友可以參考下

Python自帶的tarfile模塊可以方便讀取tar歸檔文件,牛b的是可以處理使用gzip和bz2壓縮歸檔文件tar.gz和tar.bz2。
與tarfile對應(yīng)的是zipfile模塊,zipfile是處理zip壓縮的。請注意:os.system(cmd)可以使Python腳本執(zhí)行命令,當(dāng)然包括:tar -czf  *.tar.gz *,tar -xzf *.tar.gz,unzip等,當(dāng)我覺得這樣盡管可以解決問題,但我覺得很業(yè)余。

使用tarfile壓縮

復(fù)制代碼 代碼如下:

import tarfile
 
#創(chuàng)建壓縮包名
tar = tarfile.open("/tmp/tartest.tar.gz","w:gz")
#創(chuàng)建壓縮包
for root,dir,files in os.walk("/tmp/tartest"):
    for file in files:
        fullpath = os.path.join(root,file)
        tar.add(fullpath)
tar.close()

使用tarfile解壓
復(fù)制代碼 代碼如下:

def extract(tar_path, target_path):
    try:
        tar = tarfile.open(tar_path, "r:gz")
        file_names = tar.getnames()
        for file_name in file_names:
            tar.extract(file_name, target_path)
        tar.close()
    except Exception, e:
        raise Exception, e

其中open的原型是:

復(fù)制代碼 代碼如下:

tarfile.open(name=None, mode='r', fileobj=None, bufsize=10240, **kwargs)

mode的值有:
復(fù)制代碼 代碼如下:

'r' or 'r:*'   Open for reading with transparent compression (recommended).
'r:'   Open for reading exclusively without compression.
'r:gz'   Open for reading with gzip compression.
'r:bz2'   Open for reading with bzip2 compression.
'a' or 'a:'   Open for appending with no compression. The file is created if it does not exist.
'w' or 'w:'   Open for uncompressed writing.
'w:gz'   Open for gzip compressed writing.
'w:bz2'   Open for bzip2 compressed writing.

更多請參考:tarfile — Read and write tar archive files

相關(guān)文章

最新評論