Can anybody tell me what is wrong with this code?

As far as concern about as I know @zipFiles = grep /zip/, $ftp->dir; is creating a prob but if I will remove this part then I will not have any thing for using regex part.

Error : <"Time, file_created_date, File_size, File_name"> file is not found.

use Net::FTP;

#use File::Copy;

$Login   = "<redacted>";
$Pwd     = "<redacted>";
$ftpHost = "<redacted>";

$ftpFolder = "/daj/dhakj/ahdakl/abc_201206_def_05";
$ftp = Net::FTP->new( $ftpHost, Timeout => 100 );

if ($ftp) {
    print $ftp->message;
}

$ftp->login( $Login, $Pwd );
print $ftp->message;
$ftp->cwd($ftpFolder);
@all_dir = $ftp->ls();

#print @all_dir;

foreach $ls_dir (@all_dir) {
    if ( $ls_dir !~ /exe|txt|zip/ ) {
        $latest_dir = $ls_dir;
    }
}

print "$latest_dir\n";
$mcl_dir = '/daj/dhakj/ahdakl/abc_201206_def_05' . $latest_dir;
$ftp->cwd($mcl_dir) or die "not able to change the dir\n\n";
@zipFiles = grep /zip/, $ftp->dir;

foreach my $myfile (@zipFiles) {
    if ( $myfile !~ /a|b|c|d|/g ) {
        $ftp->get("$myfile");
        print $ftp->message;
    }
}
link|improve this question

0% accept rate
Hi guys I got it where i was doing mistake :) well i have add one more line to running the script successfully and that line is foreach my $myfile(@zipFiles) { $temp = substr("$myfile", 39); – user1202644 Feb 19 at 18:06
3  
The biggest mistake you made was not using use strict; use warnings; – TLP Feb 19 at 19:34
Hi, I am facing one more problem here is I am trying to copying few zip files .During copying data is getting loss so when i am trying to extract those files i am getting error : <"The archive is corrupt"> Do i have to add some more code ? or some other module like win32::internet.As i am using windows – user1202644 Feb 20 at 7:09
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.