Help for this page

Select Code to Download


  1. or download this
    # Add a file if it's not exsits in the zip Archive
    $zip->addFile($someFile, $someName) unless $zip->memberNamed($someName
    +);
    
  2. or download this
    if ($File::Find::name =~ m/\.txt$/i){
       my $zipped = $zip->addFile( $File::Find::name );
    }