我正在寻找一种在没有目录的tar.gz中压缩tar文件的方法。
今天我的代码生成一个没有带“tarfile”库和arcname参数的目录的TAR文件,但是当我想在TAR.GZ中压缩这个TAR文件时,我不明白如何删除目录。
我在过去3天内做了很多测试。
我的代码:
Tarname = example.tar
ImageDirectory = C:\...
TarDirectory = C:\..
tar = tarfile.open(Tarname, "w")
tar.add(ImageDirectory,arcname=TarName)
tar.close()
targz = tarfile.open("example.tar.gz", "w:gz")
targz.add(TarDirectory, arcname=TarName)
targz.close()
答案 0 :(得分:3)
对于个人文件:
tar.add(file, arcname=os.path.basename(file))
为您要添加的每个文件。 basename
将删除目录信息。
或者,对于递归的目录:
def flatten(tarinfo):
tarinfo.name = os.path.basename(tarinfo.name)
return tarinfo
tar = tarfile.open("example.tar.gz", "w:gz")
tar.add("directory", filter=flatten)
tar.close()
答案 1 :(得分:0)
尝试使用gzip模块: 以下是如何使用它的示例:
import gzip
f_in = open('file.txt', 'rb')
f_out = gzip.open('file.txt.gz', 'wb')
f_out.writelines(f_in)
f_out.close()
f_in.close()