Perl experts out there, i am stuck at reading the contents of the zip file and dumping them in a destination folder "C:\\temp".
Any hint here would be of great help. Here is my very short code, i know i can do File:

pec to read content, or i might be wrong. Please advice.
Thanks
use warnings;
use strict;
use Archive::Zip;
my $filezip = "E:\\Eclipse\\WORKSPACE\\PerlBasic1\\Perl\\FileHandling\\GroupWorkflow.zip";
my $zip = Archive::Zip->new( "$filezip" );
my @members = $zip->members();
foreach my $mymember(@members){
open(LOG,">>E:\\Eclipse\\WORKSPACE\\PerlBasic1\\Perl\\FileHandling\\FileList.txt");
print LOG "$mymember\n";
close(LOG);
}