my $zip = new Archive::Zip; $zip->read('Filename.zip'); # ..obviously you have this already. my @memberNames = $zip->memberNames; # @memberNames is now a list of the files in the zip Archive.
Now you iterate over that array like any other array.
Is that what you wanted?
After this, of course, you can extract the files by name (using the ->extractMember method) and delete the temporary file when you're done with it.
In reply to Re^3: Process Zip
by Demmy
in thread Process Zip
by bitman
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |