I'm using the zipfile library to read a zip file in Windows, and it
seems to be adding too many newlines to extracted files. I've found
that for extracted text-encoded files, removing all instances of '\r'
in the extracted file seems to fix the problem, but I can't find an
easy solution for binary files.
The code I'm using is something like:
from zipfile import Zipfile
z = Zipfile(open('z ippedfile.zip') )
extractedfile = z.read('filenam e_in_zippedfile ')
I'm using Python version 2.5. Has anyone else had this problem
before, or know how to fix it?
Thanks,
Neil
seems to be adding too many newlines to extracted files. I've found
that for extracted text-encoded files, removing all instances of '\r'
in the extracted file seems to fix the problem, but I can't find an
easy solution for binary files.
The code I'm using is something like:
from zipfile import Zipfile
z = Zipfile(open('z ippedfile.zip') )
extractedfile = z.read('filenam e_in_zippedfile ')
I'm using Python version 2.5. Has anyone else had this problem
before, or know how to fix it?
Thanks,
Neil
Comment