You can try using Compress::Zlib (alt.), but that may require installing a private version if it isn't already available.
Alternately, you can call the Unix command line utilities gzip -cd or gzcat from Perl using system, exec, backticks or the very groovy Shell module...
use Shell qw/ gzcat /; my $file = "/path/to/gzipped-file" my $contents = gzcat( $file );
--k.
In reply to Re: Extracting a GZIP File
by Kanji
in thread Extracting a GZIP File
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |