Help for this page

Select Code to Download


  1. or download this
    $ftp->login($u, $p) or die "Failed to login: $!\n";
    
  2. or download this
    my $lines = $ftp->dir("/");
    die "Can't get directory listing: $!\n" if (!defined($lines));
    print join("\n", @$lines), "\n";
    
  3. or download this
    my $ftp = Net::FTP->new($host, Debug => 5);
    
  4. or download this
    print "Current directory is ", $ftp->pwd(), "\n";