i am trying to scan recursively a bunch of zip files and I am using - of course - archive::zip. I would like to avoid to expand the archives content in a temporary folder. I would like to be able to use something like (nearly-pseudo code):

sub CALLMYSELFAGAIN .....

    my @members = $currentZipFile->members();
while(my $member = pop @members){                       
  if ($member->isTextFile()){
      push @content, $member->contents();
}elsif(isZipFile($member->fileName())){
      CALLMYSELFAGAIN($member);
    }

Problem is: $member->can("memberNames")) return false, so $member is NOT an archive::zip in the sense that I could not open it again as zip file. Or am I wrong?

Any hint?

Thanks

Daniel

link|improve this question

Are you having zip of directory and files or zip of zip ? It seems you are confusing the two. – Ouki Feb 17 at 15:31
1  
If you do have a zip containing zips that you want to traverse recursively, please be aware that malicious zips are possible - you can create a zip file that unzips to an exact copy of itself, for infinite recursion (a zip quine); research.swtch.com/zip – Daenyth Feb 17 at 17:42
feedback

1 Answer

up vote 0 down vote accepted

You can do this:

elsif (isZipFile($member->filename)) {
    my $contents = $currentZipFile->contents($member);
    open my $fh, '<', \$contents; # In-memory filehandle
    my $child_zip = Archive::Zip->new;
    $child_zip->readFromFileHandle($fh);
    CALLMYSELFAGAIN($child_zip);
}

but expect that to be very memory intensive, especially if you go more than one level deep.

link|improve this answer
1  
I get an error related to the fact that the file is not seekable:error: file not seekable at D:/Perl64/lib/Archive/Zip/Archive.pm line 576 Archive::Zip::Archive::readFromFileHandle('Archive::Zip::Archive=HASH(0x 2c63180)', 'GLOB(0x2a5dc38)') called at _________.pm line 190 metellib::zipDescent('filename.zip') – Daniel Feb 17 at 16:06
Anyway your answer helped me to identify a solution. Thanks – Daniel Feb 18 at 11:41
feedback

Your Answer

 
or
required, but never shown

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