# 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' );