2ge has asked for the wisdom of the Perl Monks concerning the following question:
Thanks for any help, I hope this is possible.use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); my $zip = Archive::Zip->new(); while( my($k,$v) = each(%$hr) ) { my $member = $zip->addString( $v->{content}, $v->{FileName} ); } #here should be a line how to access zipped contents
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: create ZIP to variable
by 2ge (Scribe) on Nov 26, 2005 at 17:23 UTC |