programming-examples/perl/Network/Using Net_FTP to get a file on the server.pl

18 lines
393 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
use Net::FTP;
$ftp = Net::FTP->new("ftp.cpan.org", Timeout => 30)
or die "Could not connect.\n";
$username = "anonymous";
$password = "asdf";
$ftp->login($username, $password)
or die "Could not log in.\n";
$ftp->cwd('/pub/CPAN');
$remotefile = "CPAN.html";
$localfile = "file.txt";
$ftp->get($remotefile, $localfile)
or die "Can not get file.\n";