in reply to Re: Post file to hard disk
in thread Post file to hard disk
<http>
<body>
OOps.. does this look better?
Will this line of code work if my verio uses ftp.pm ..?
Thanx in advance.. :)
Lisa.
use NET::FTP;
my $hostname='superwarez.com';
my $user='warez';
my $password='warez';
my $ftp=Net::FTP -> new($hostname) or die ("Connect failed");
$ftp->login($username,$password);
$ftp->binary;
$ftp->cwd("/pub/uploads");
$ftp->put("mystuff.txt");
$ftp->get("warezlist.txt");
$ftp->quit