Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Beginners guide to Net::FTP

by spurperl (Priest)
on Aug 14, 2002 at 10:10 UTC ( [id://190020]=perltutorial: print w/replies, xml ) Need Help??

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";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perltutorial [id://190020]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-23 19:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found