hello,
I'm trying to zip a bunch of files, then base64 encode the zip file, write the base64 code to another perl script, and base64 decode the base64 code.
my $status = $zip->writeToFileNamed($zipname);
die "Error creating parts zip file.\n" if $status!= 'AZ_OK';
print TRVUP "__DATA__\n"
open ZIPFILE, $zipname; ##$zipname is a valid zip file
while(<ZIPFILE>){
$filecode .= $_;
}
my $base64zip = encode_base64($filecode);
print TRVUP $base64zip;
then, in TRVUP, I have:
open ZIP, "+>C:/testzip.zip";
while(\*DATA){
print ZIP decode_base64($_);
}
close ZIP;
This ends up creating the file testzip.zip, but it is not a valid zip file. Is it even possible to do what I want?
thanks for any help
I'm trying to zip a bunch of files, then base64 encode the zip file, write the base64 code to another perl script, and base64 decode the base64 code.
my $status = $zip->writeToFileNamed($zipname);
die "Error creating parts zip file.\n" if $status!= 'AZ_OK';
print TRVUP "__DATA__\n"
open ZIPFILE, $zipname; ##$zipname is a valid zip file
while(<ZIPFILE>){
$filecode .= $_;
}
my $base64zip = encode_base64($filecode);
print TRVUP $base64zip;
then, in TRVUP, I have:
open ZIP, "+>C:/testzip.zip";
while(\*DATA){
print ZIP decode_base64($_);
}
close ZIP;
This ends up creating the file testzip.zip, but it is not a valid zip file. Is it even possible to do what I want?
thanks for any help