Appending Files into an Existing Zip file in S3 #845
-
I want to append additional files into an existing Zip file in S3, currently im getting error if try use 'a' in my zipfile.ZipFile(fout, 'a'). Is it possible, if yes, what am I doing wrong? chunk_size_mb = 256 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
AWS S3 blobs are immutable: if you want to append, you have to upload (overwrite) a new blob |
Beta Was this translation helpful? Give feedback.
AWS S3 blobs are immutable: if you want to append, you have to upload (overwrite) a new blob