我在我的 perl 5.8.8 中安装了Net::SFTP::Foreign,我正在尝试使用以下代码登录到安全 FTP 服务器:
use Net::SFTP::Foreign;
my $host = $tt->get_ftp_server_address();
my $sftp = Net::SFTP::Foreign->new("$host",
{user=>$tt->get_location_user_name(),
password=>$tt->get_location_user_password(),
port=>'22'});
我尝试调用的行Net::SFTP::Foreign->new
失败,而没有对我抛出任何错误。