日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

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

系統(tǒng) 2102 0

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

使用tarfile壓縮

復制代碼 代碼如下:

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解壓
復制代碼 代碼如下:

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的原型是:

復制代碼 代碼如下:

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

mode的值有:
復制代碼 代碼如下:

'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


更多文章、技術交流、商務合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 通城县| 恩施市| 乌什县| 和政县| 德令哈市| 永安市| 鹰潭市| 神农架林区| 民县| 新巴尔虎右旗| 商丘市| 高邮市| 崇礼县| 蓝田县| 博罗县| 南宁市| 土默特右旗| 昌图县| 西林县| 台北市| 盘锦市| 淳化县| 娄烦县| 鄄城县| 济南市| 德阳市| 北京市| 静乐县| 桐庐县| 扶沟县| 衡南县| 钦州市| 慈溪市| 泽库县| 二手房| 息烽县| 大悟县| 原阳县| 深州市| 五家渠市| 新乡市|