The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::Lite::FTP - Perl FTP client

SYNOPSIS

  use Net::Lite::FTP;
  my $tlsftp=Net::Lite::FTP->new();
  $tlsftp->open("ftp.tls.pl","21");
  $tlsftp->user("user");
  $tlsftp->pass("password");
  $tlsftp->command( "PBSZ 0");#Required at the momemnt
  $tlsftp->command("PROT P");#Required at the momemnt
  $tlsftp->cwd("pub");
  my @files=$tlsftp->nlst("*.exe");
  foreach $f (@files) {
          $tlsftp->get($f);
  };

DESCRIPTION

Very simple FTP client with support for TLS

SEE ALSO

Net::FTP Tie::FTP

ftp(1), ftpd(8), RFC 959 http://war.jgaa.com/ftp/rfc/rfc959.txt

http://war.jgaa.com/ftp/draft/draft-murray-auth-ftp-ssl-03.txt

http://www.ietf.org/internet-drafts/draft-murray-auth-ftp-ssl-10.txt

ftp://ftp.ietf.org/internet-drafts/draft-fordh-ftp-ssl-firewall-01.txt

AUTHOR

Dariush Pietrzak,'Eyck' <cpan@ghost.anime.pl>

COPYRIGHT AND LICENSE

Copyright (C) 2005 by Dariush Pietrzak

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available.