码迷,mamicode.com
首页 > 其他好文 > 详细

压缩解压文件操作

时间:2019-04-08 15:16:49      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:roo   os.path   port   mes   turn   root   file   pytho   name   


def unzip_file(fname, dirs):
    import zipfile
    fz = zipfile.ZipFile(fname, 'r')
    #     for file in fz.namelist():
    #         print(file)
    #         fz.extract(file, dirs)
    fz.extractall(dirs)


def ungz_file(fname, dirs):
    t = tarfile.open(fname, "r:*")
    names = t.getnames()
    print(names)
    t.extractall(path=dirs)
    t.close()


def tar_gz(fname):
    """
    创建gz文件
    :param fname:
    :return:
    """
    import tarfile
    t = tarfile.open(fname + ".tar.gz", "w:gz")
    for root, dir_list, files in os.walk(fname):
        if not files:
            arc_name = root.replace(fname, "")
            t.add(root, arcname=arc_name)
        else:
            for file in files:
                arc_name = file.replace(fname, "")
                full_path = os.path.join(root, file)
                t.add(full_path, arcname=arc_name)
    t.close()

压缩解压文件操作

标签:roo   os.path   port   mes   turn   root   file   pytho   name   

原文地址:https://www.cnblogs.com/lajiao/p/10670336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!