http://qs1969.pair.com?node_id=222848


in reply to Re: Net::FTP
in thread Net::FTP

Or, if you want to attempt to put/get all of your files - store the errors in a scalar or array and die/log them after looping through @files:
my @errors = (); foreach my $file (@files) { # Or get... $ftp->put($file) or push (@errors, ("Error putting $file: " . $ftp +->message)); } die (join "\n", @errors);

Replies are listed 'Best First'.
Re^3: Net::FTP
by Anonymous Monk on May 20, 2008 at 22:22 UTC
    How do you define @files?