16 Oct
2001
16 Oct
'01
3:39 p.m.
On Tue, Oct 16, 2001 at 05:18:51PM +0200, Tom Deprez wrote:
import zipfile import tempfile
def zipfolder(self): filename=tempfile.mktemp()+'.zip' zip=zipfile.ZipFile(filename,'w',zipfile.ZIP_STORED) ^ wb (perhaps, I am not sure) zip.write('c:\install.log') zip.close() return open(filename).read() ^ 'rb' (this time I am sure)
Oleg. -- Oleg Broytmann http://phd.pp.ru/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.