Net-FTPlib
Examples
A simple examples
use Net::FTPlib;
my Ftp $ftp .= new(:host(hostip), :user(username), :pass(password));
$ftp.login();
$ftp.get('somefile', 'outfile');
$ftp.quit();
Document
See ftplib-document.
Installation
-
install with zef
zef install Net::FTPlib
License
The MIT Lincese (MIT).