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


in reply to Re^3: Net::FTP pwd bug?
in thread Net::FTP

Have you tried trapping for errors similar to the code in grantm's post above?:
my $path = $ftp->pwd() or die "pwd failed: " . $ftp->code() . ": " . $ftp->message(); print "$path\n";