Mikeal has asked for the wisdom of the Perl Monks concerning the following question:
>>> STOR grrr.txt <<< 150 Ready to write file "grrr.txt". <<< 226 Transfer complete.
use Net::FTPSSL; $ftps = Net::FTPSSL -> new('yyy.yyy.yyy.yyy', Encryption => 'I', Debug => '2', DebugLogFile => 'ftps.log'); $ftps -> login("luser","pass"); $ftps -> cwd("/TEST/Test/"); $ftps -> put("TEST.TXT","grrr.txt"); $ftps -> quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::ftpssl put command doesn't work?
by Illuminatus (Curate) on Aug 28, 2009 at 21:36 UTC | |
|
Re: Net::ftpssl put command doesn't work?
by bichonfrise74 (Vicar) on Aug 28, 2009 at 17:03 UTC | |
by Mikeal (Initiate) on Aug 28, 2009 at 18:26 UTC | |
|
Re: Net::ftpssl put command doesn't work?
by Anonymous Monk on Aug 28, 2009 at 15:50 UTC |