You can use Archive::Zip's member manipulation to obtain a list of files:
use strict; use warnings; use Archive::Zip; my $zippath = 'wibble.zip'; my $zip = Archive::Zip->new (); $zip->read ($zippath); my @members = $zip->members(); print $_->fileName(), "\n" for @members;
In reply to Re: Question: parse info in a Zipped XML document attached in an email
by GrandFather
in thread Question: parse info in a Zipped XML document attached in an email
by lihao
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |