in reply to How get SFTP for Windows 64 bit architecture and ActivePerl 5.12
and that should install that module, along with its dependencies (Net::SFTP::Foreign and Net::SSH2). Then it's just a matter of:ppm install Net-SFTP-Foreign-Backend-Net_SSH2
(See the Net::SFTP::Foreign docs for further details.)use Net::SFTP::Foreign; my $sftp = Net::SFTP::Foreign-> new(host => $server, backend => 'Net_SSH2', user => $user, password => $pass);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How get SFTP for Windows 64 bit architecture and ActivePerl 5.12
by ltthinks (Initiate) on Jun 26, 2012 at 18:16 UTC | |
by Anonymous Monk on Jun 27, 2012 at 15:29 UTC |