Skip to content
Advertisement

Tag: 64-bit

How to create zip64 archive using shutil.make_archive

Python code snippet which creates creates zip archive file from a folder. I am getting this error : Filesize would require ZIP64 extensions. How to create ZIP64 archive file using shutil.make_archive? Note: I cannot use zipfile.ZipFile function. Answer You must be using a Python version prior to 3.4 unfortunately after reading shutil source code on github github . it’s clearly

Advertisement