Re: [Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread Ben Coman
I've not used any compression stuff in Pharo, but be aware that GZip (*.gz files) is not Zip (*.zip files). http://www.differencebetween.net/technology/difference-between-zip-and-gzip/ cheers -ben On Tue, Apr 19, 2016 at 8:48 PM, Valentin Ryckewaert wrote: > Hi, > > I'm trying to unzip a file I

Re: [Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread stepharo
Le 19/4/16 14:48, Valentin Ryckewaert a écrit : Hi, I'm trying to unzip a file I did this : GZipReadStream unzip:'aPath/myZip.zip' to: 'aPath/test' asFileReference It's not working and I don't really understand the doc of the method, why does unzip want as first argument the name of the file

Re: [Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread Cyril Ferlicot Delbecque
On 19/04/2016 14:48, Valentin Ryckewaert wrote: > Hi, > > I'm trying to unzip a file I did this : > GZipReadStream unzip:'aPath/myZip.zip' to: 'aPath/test' asFileReference > > It's not working and I don't really understand the doc of the method, > why does unzip want as first argument the name

[Pharo-users] [Pharo-Users] Unzip a file

2016-04-19 Thread Valentin Ryckewaert
Hi, I'm trying to unzip a file I did this : GZipReadStream unzip:'aPath/myZip.zip' to: 'aPath/test' asFileReference It's not working and I don't really understand the doc of the method, why does unzip want as first argument the name of the file only? Valentin