Here's a bit of code mangled for your purpose from a hunk of working code from an old project. It should run as-is or with a tweak or two.
#!/usr/bin/perl -w use strict; use Archive::Zip; my $zfile = 'somefile.zip'; my $zipobj = Archive::Zip->new() or die "Can't create zip object\n"; if ($error = $zipobj->read($zfile) ) { die "Can't read $zfile\n"; } my @file_names = $zipobj->memberNames();
I recommend Archive::Zip. It's pretty straightforward and capable once you get the concept of the way it returns zipped archive members as objects which you then call other methods to read or manipulate. For example (from the same project):
my @file_objs = $zipobj->members(); for my $file_obj (@file_objs) { my $file_txt = $file_obj->contents(); # etc. etc. }
Cheers. Hope this helps. David

In reply to Re: Reading contents of a zip file without opening it by dvergin
in thread Reading contents of a zip file without opening it by WintersMystic

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.