in reply to How can I retrieve a file from a UNIX server using Perl on a Windows NT client?

Error checking can be acheived through the following code:

$ftp->login($user,$pass) or die "Either $user or password is incorrect" ,$ftp->message;

Note the $ftp->message. I dunno if this is new to this module but it is worth noting so that if new users are still using these sections, the FAQ's should reflect some of the new features that the modules support.

  • Comment on Re: How can I retrieve a file from a UNIX server using Perl on a Windows NT client?
  • Download Code