如果不使用zip64扩展名,一个Zip文件的大小不能超过2GB,因此试图写入一个超过该限制的文件是行不通的。我原以为在尝试这样写的时候,会引起一个例外,但我没能引起一个例外。(文档对此保持沉默。)如果在这种情况下没有引发异常,我将如何(有效地)确定写入是否成功?
最佳答案
我在尝试将大字符串写入zip存档时遇到异常:
$ python write-big-zip.py
Traceback (most recent call last):
File "write-big-zip.py", line 7, in <module>
myzip.writestr('arcname%d'% i, b'a'*2**30)
File "/usr/lib/python2.7/zipfile.py", line 1125, in writestr
self._writecheck(zinfo)
File "/usr/lib/python2.7/zipfile.py", line 1020, in _writecheck
raise LargeZipFile("Zipfile size would require ZIP64 extensions")
zipfile.LargeZipFile: Zipfile size would require ZIP64 extensions
使用脚本:
#!/usr/bin/env python
"""Write big strings to zip file until error."""
from zipfile import ZipFile
with ZipFile('big.zip', 'w') as myzip:
for i in range(4):
myzip.writestr('arcname%d'% i, b'a'*2**30)
关于python - 如何判断python的ZipFile.writestr()是否由于文件已满而失败?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7921210/