vote up 2 vote down star

What is your preferred method for reading through the contents of zipped directories with Perl ?

flag

75% accept rate
are you trying to look at the directory listing or the content of the files? – David Nehme Sep 25 '08 at 18:23

3 Answers

vote up 5 vote down check

There are several modules on CPAN for working with various archive formats (zip, tar, etc.), the one you're probably after is Archive::Zip.

link|flag
When you post links to (search.)CPAN, please make sure you point to the author and version agnostic URL so it always points to the latest version of the module. In this case, that would be: search.cpan.org/perldoc?Archive::Zip – tsee Sep 25 '08 at 17:52
vote up 2 vote down

Archive::Zip

require Archive::Zip;
my $zip = Archive::Zip->new($somefile);
for my $m ($zip->memberNames()) {
  print $m;
}
link|flag
vote up 1 vote down

If you want the contents of a .tar.gz archive

open(DIR_LISTING, "gzip -dc concert25.tgz | tar -tf -|") || die;
while (<DIR_LISTING>) {
   print;
}
close (DIR_LISTING);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.