Help for this page

Select Code to Download


  1. or download this
    system('zip',$zipfile_name,'*.pdf');
    ## don't forget to check $? for errors
    
  2. or download this
    use Archive::Zip;
    my $zip = new Archive::Zip;
    ...
    }
    
    die "Can't write zip file" if $zip->writeToFileNamed('pdfs.zip') != AZ
    +_OK;