我正在尝试在 zip 文件中包含一个二进制文件,下面是代码片段:我首先将 zip 内容解压缩到一个临时位置,然后添加更多文件并将其压缩回一个新存档。
import zipfile
def test(fileName, tempDir):
# unzip the file contents,may contain binary files
myZipFile=zipfile.ZipFile(fileName,'r')
for name in myZipFile.namelist():
toFile = tempDir + '/' + name
fd = open(toFile, "w")
fd.write(myZipFile.read(name))
fd.close()
myZipFile.close()
# code which post processes few of the files goes here
#zip it back
newZip = zipfile.ZipFile(fileName, mode='w')
try:
fileList = os.listdir(tempDir)
for name in fileList:
name = tempDir + '/' + name
newZip.write(name,os.path.basename(name))
newZip.close()
except Exception:
print 'Exception occured while writing to PAR file: ' + fileName
一些文件可能是二进制文件。压缩代码工作正常,但是当我尝试使用 linux 的 unzip 或 python 的 zip 模块解压缩它时,我收到以下错误:
zip 文件损坏。(请检查您是否以适当的 BINARY 模式传输或创建了 zipfile,并且您已正确编译 UnZip)
我正在使用 python 2.3
这里出了什么问题?