在Python中編寫二進制文件時,我似乎缺少一些字節。我已經用「write」函數和「array.tofile」函數試過了。下面是一些示例代碼:編寫二進制文件時在Python中缺少字節?
import zlib, sys, os, array
from struct import unpack
from array import array
inputFile = 'strings.exe'
print "Reading data from: ", inputFile
print 'Input File Size:', os.path.getsize(inputFile)
f = open(inputFile, 'rb')
#compressedDocument =
document = f.read()
documentArray = array('c', document)
print 'Document Size:', len(documentArray)
copyFile = open('Copy of ' + inputFile, 'wb')
documentArray.tofile(copyFile)
#copyFile.write(document)
copyFile.close
print 'Output File Size:', os.path.getsize('Copy of ' + inputFile)
print 'Missing Bytes:', os.path.getsize(inputFile) - os.path.getsize('Copy of ' + inputFile)
f.close()
提供了以下的輸出:
Reading data from: strings.exe
Input File Size: 136592
Document Size: 136592
Output File Size: 135168
Missing Bytes: 1424
我不明白爲什麼這些字節不被寫入。我已經在多個文件中嘗試了這種方法,其中包含不同數量的丟失字節
你能給我文件'strings.exe'的內容嗎?我無法用我的文件重現問題 – eyquem