我从这里使用 zipstream并有一个 Django 视图,它返回所有文件附件的 zip 文件,这些文件附件都托管在 Amazon S3 上。但是当我下载 zip 文件时,它们都被损坏了,也就是说,我无法打开它们。
import io
import zipstream
s = io.BytesIO()
with zipstream.ZipFile(s,"w", compression=zipstream.ZIP_DEFLATED) as zf:
for file_path in file_paths:
file_dir, file_name = os.path.split(file_path)
zf.writestr(file_name, urllib.urlopen(file_path).read())
response = StreamingHttpResponse(s.getvalue(), content_type='application/octet-stream')
response['Content-Disposition'] = 'attachment; filename={}'.format('files.zip')
return response