Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    $ftp->cwd('/pub/files/');
    $ftp->rget();
    $ftp->quit;
    
  2. or download this
    use strict;
    use Net::FTP::Recursive;
    ...
    $ftp->cwd('/pub/files/');
    $ftp->rget([OmitAll => "$ignore"]);
    $ftp->quit;