from zipfile import ZipFile zip = ZipFile(archive,"a") for x in range(5): zip.writestr("file1.txt","blabla")
它将创建一个包含5个文件的存档,所有文件都名为“file1.txt”.我想要实现的是拥有一个压缩文件,每个循环迭代都附加一些内容.是否有可能没有某种辅助缓冲区以及如何做到这一点?
import gzip content = "Lots of content here" f = gzip.open('/home/joe/file.txt.gz','wb') f.write(content) f.close()