in reply to Re: Net::FTP insanity
in thread Net::FTP insanity
thinking that I needed to specify the remote file name. When I tried the put_unique() method, it failed with an "invalid number of parameters error". My code now reads:$ftp->put($file, $file) or die "Could not transfer $file to FTP server +: $!\n";
and it works.$ftp->put($file) or die "Could not transfer $file to FTP server: $@\n" +;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
thread++, carry on
by DarthFredd (Novice) on Nov 22, 2007 at 17:05 UTC | |
|
Re^3: Net::FTP insanity
by Gavin (Archbishop) on Nov 22, 2007 at 19:22 UTC |