Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
       die "Can't read $zfile\n";
    }
    my @file_names = $zipobj->memberNames();
    
  2. or download this
    my @file_objs = $zipobj->members();
    for my $file_obj (@file_objs) {
       my $file_txt = $file_obj->contents();
       # etc. etc.
    }