Re: yapc::Europe::19101 (now Archive::Zip)

2001-03-28 Thread Greg Tod
Jon Galliers wrote: I have a real fear that this is a really stupid question, however I'm having real problems using Archive::Zip. Try something like: use strict; use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); my $zip = Archive::Zip-new(); my $member = $zip-addFile("bor

Re: Archive::Zip

2001-03-28 Thread Jon Galliers
cheers, sorted Try something like: use strict; use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); my $zip = Archive::Zip-new(); my $member = $zip-addFile("boris.pl"); $member-desiredCompressionLevel(9); $zip-writeToFileNamed("boris.zip") == AZ_OK or