亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在python中將zip壓縮包轉換成gz.tar

發布時間:2021-02-25 15:49:04 來源:億速云 閱讀:387 作者:戴恩恩 欄目:開發技術

本文章向大家介紹如何在python中將zip壓縮包轉換成gz.tar的基本知識點總結和需要注意事項,具有一定的參考價值,需要的朋友可以參考一下。

Python主要用來做什么

Python主要應用于:1、Web開發;2、數據科學研究;3、網絡爬蟲;4、嵌入式應用開發;5、游戲開發;6、桌面應用開發。

#coding: utf-8

import os
import tarfile
import zipfile

def zip2tar(root_path, name,to_name='test'):

 '''
 root_path: 壓縮文件所在根目錄
 name: 壓縮文件名字(zip格式)
 '''
 #root_path = r'C:\Users\Administrator\Desktop\somefiles'
 #file_path = os.path.join(root_path, 'somemodel.zip')

 file_path = os.path.join(root_path, name+'.zip')

 with zipfile.ZipFile(file_path, 'r') as zzip:
  with tarfile.open(os.path.join(root_path, to_name+'.gz.tar'), 'w') as ttar:
   for ffile in zzip.namelist():
    if not os.path.isdir(ffile):
    #if not ffile.strip().endswith(r'/'):
     zzip.extract(ffile, root_path)
     ttar.add(os.path.join(root_path,ffile), arcname=ffile)


if __name__ == '__main__':

 root_path = raw_input(u'input root path: ')
 name = raw_input(u'input the zip name(without .zip): ')
 zip2tar(root_path, name)

以上就是小編為大家帶來的如何在python中將zip壓縮包轉換成gz.tar的全部內容了,希望大家多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蕲春县| 兰西县| 介休市| 延边| 铜鼓县| 江北区| 米脂县| 青阳县| 屯昌县| 大连市| 建湖县| 咸丰县| 海阳市| 南靖县| 奈曼旗| 德令哈市| 天峻县| 萨迦县| 七台河市| 西乌珠穆沁旗| 方城县| 江都市| 宁城县| 贵定县| 象山县| 枣阳市| 社会| 富阳市| 五莲县| 眉山市| 韶关市| 博湖县| 班玛县| 江城| 综艺| 富源县| 桂阳县| 潮州市| 社旗县| 芦溪县| 沁源县|