zoukankan      html  css  js  c++  java
  • python tar 压缩解压

    压缩:

    1.

    import tarfile
    import os
    def tar(fname):
        t = tarfile.open(fname + ".tar.gz", "w:gz")
        for root, dir, files in os.walk(fname):
            for file in files:
                fullpath = os.path.join(root, file)
                t.add(fullpath)
        t.close()
    
    if __name__ == "__main__":
        tar("test")

    2.

    import tarfile
     
    #创建压缩包名
    tar = tarfile.open("/tmp/tartest.tar.gz","w:gz")
    #创建压缩包
    for root,dir,files in os.walk("/tmp/tartest"):
        for file in files:
            fullpath = os.path.join(root,file)
            tar.add(fullpath)
    tar.close()

    解压:

    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

    如果提示"tarfile.ReadError: not a gzip file"

    将"r:gz" 改为"r"


    其中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 wr

  • 相关阅读:
    复利计算--结对1.0,做汉堡,结对2.0
    复利计算1.0,2.0,3.0,4.0,5.0
    2020助教总结
    作业2
    作业一
    linux设置opengl版本
    第一次个人作业
    寒假助教总结
    直播
    2020面向对象程序设计寒假作业3
  • 原文地址:https://www.cnblogs.com/sea-stream/p/10228416.html
Copyright © 2011-2022 走看看