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";
for each method invocation.