in reply to
Simple FTP
Those Net::FTP methods return values which indicate success or failure. Check the documentation that comes with the module for details. You probably want to do something like
$ftp->get($file) or die "Can't get $file\n";
[download]
for each method invocation.
Comment on
Re: Simple FTP
Download
Code
In Section
Cool Uses for Perl