Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    $ftp->cwd(DIR1);
    print Dumper $ftp->dir(<DIR1>);
    $ftp->quit;
    
  2. or download this
    #!/usr/bin/perl
    
    use Net::FTP;
    ...
    $ftp->cwd(DIR1);
    print Dumper $ftp->ls(<GLOB>);
    $ftp->quit;