Help for this page

Select Code to Download


  1. or download this
    use strict;           # Don't forget !
    use Net::FTP;
    ...
    
    my $f = Net::FTP->new($host) or die "Can't open $host\n";
    $f->login($user, $password) or die "Can't log $user in\n";
    
  2. or download this
    my $dir = "my/favorite/dir";
    
    $f->cwd($dir) or die "Can't cwd to $dir\n";
    
  3. or download this
    my $file_to_get = "something";
    my $file_to_put = "other something";
    
    $f->get($file_to_get) or die "Can't get $file from $dir\n";
    $f->put($file_to_put) or die "Can't put $file into $dir\n";
    
  4. or download this
    my $file_mdtm = $f->mdtm($file) or die "Can't find $file in $dir\n";
    
  5. or download this
    my $file_mdtm = $f->mdtm($file) or die "Can't find $file in $dir\n";
    
    ...
    {
        print "$file is more than 5 days old\n";
    }
    
  6. or download this
    $, = "\n";
    my @files = $f->ls;
    print @files, "\n";
    
  7. or download this
    $f->ascii();
    $f->binary();
    
  8. or download this
    my $f = Net::FTP->new($host) or die "Can't open $host: $@\n";