Help for this page

Select Code to Download


  1. or download this
    use Win32::Internet;
    
    ...
    my $inet = new Win32::Internet ();
    $inet->FTP($FTP, $host, $user_name, $pass) || die $!;
    $FTP->Put ($file) || die $!;
    
  2. or download this
    use Net::FTP;
    
    ...
    my $FTP = Net::FTP->new($host) or die $!;
    $FTP->login($user_name,$pass) || die $!;
    $FTP->put($file) || die $!;
    
  3. or download this
    use File::Copy;
    
    ...
    my $dest_file = 'somefile';
    
    copy ($source_file, $dest_file) || die $!;