in reply to Re^3: Compress::Zlib : what to do with the "in memory" data ?
in thread Compress::Zlib : what to do with the "in memory" data ?
Update: Since Z compressed files can be opened by gzip, the scripts i communicate with will be able to use gunzip instead of compress , wich will allow them to read both .gz and .Z files.
And i won't have to use a system call :)
One more update: Since i also need to tar file with Archive::Tar I finally used the compression option this module provides, which creates a tar.gz . e.g :
Thx for your answers !$objTar->write($myfile.tar.gz,1) ;
|
|---|