mhd.tahawi has asked for the wisdom of the Perl Monks concerning the following question:
Archive::Zip doesn't support zip64 extension and because of that I am using IO::Compress::Zip module instead.# Create a Zip file use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); my $zip = Archive::Zip->new(); # Add a file from disk my $file_member = $zip->addFile( 'xyz.pl', 'AnotherName.pl' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Renaming a file member in zip64 archive
by AppleFritter (Vicar) on Aug 06, 2014 at 17:11 UTC | |
by pmqs (Friar) on Aug 06, 2014 at 21:15 UTC | |
|
Re: Renaming a file member in zip64 archive
by pmqs (Friar) on Aug 06, 2014 at 21:42 UTC | |
by pmqs (Friar) on Aug 06, 2014 at 21:56 UTC |