.tar.gz海量遥感影像解压

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

if __name__ == "__main__":
    tar("del")
版权所有,违者必究
原文地址:https://www.cnblogs.com/ydbgis/p/14182470.html