Hi Monks!
I am trying to unzip files into a directory after grabbing this file(.zip) using FTP. I am getting an error "Read of Archive::Zip::Archive=HASH(0x8d41a58) failed". I am posting some of the code here and maybe someone will know what is going wrong. Or maybe there is a simpler way to do this
Here is the code:
#!/usr/bin/perl -w
use strict;
use CGI::Carp qw( fatalsToBrowser set_message );
use File::Temp qw/ :POSIX /;
use Net::FTP;
use Archive::Zip qw(:ERROR_CODES);
# Set up FTP connection
my $ftp = Net::FTP->new( $myhost );
$ftp->login( $myuser, $mypass ) || die "Could not login to $host: $
+@";
$ftp->cwd( $ftpsourcedir ) || die "Could not cwd $ftpsourcedir: $@"
+;
$ftp->binary();
# Get a list of files
my @dircontents = $ftp->dir, "\n" || die "Could not list $ftpsource_di
+r: $@";
@dircontents = sort( @dircontents );
foreach my $filestats (@dir_contents) {
$err_msg = '';
my @stats = split(' ', $filestats);
my $filename = $stats[5];
my $file_size = $stats[1];
# I can see the zip file name here.
print "\n$filename\n\n";
#unzip these files into a direcotory
my $zip = Archive::Zip->new();
my $status = $zip->read($filename);
my @members = $zip->memberNames();
die "Read of $zip failed\n" if $status != AZ_OK;
foreach (@members) {
$zip->extractMember("$_", "temp/$_");
}
Thanks!
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.