Skip to content

raku-community-modules/Net-FTPlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Net-FTPlib

A Raku binding for 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

Installation

  • install with zef

    zef install Net::FTPlib

License

The MIT Lincese (MIT).