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