Re: [Pharo-users] ZipFileMember>>contentStream has leading characters
| zipper file | zipper := ZipArchive new readFrom: 'tp1.zip'. "file contains test.st" file := zipper members at: 1. "file contentStream returns the stream with file's information uncompressed" On 13 Octob
Re: [Pharo-users] ZipFileMember>>contentStream has leading characters
doitFromStream | zipper file | zipper := ZipArchive new readFrom: '/Users/diego/tp1-95195.zip'. file := zipper members at: 2. "file contentStream returns the stream with file's information uncompressed" On 13 October 2014 08:15, Tudor Girba wrote: > Wha