in reply to use of quote within ftp
Prints:use Net::FTP; my $ftp = Net::FTP->new('ftp.rge.com'); $ftp->login('ftp','anon@'); my $okay=$ftp->quot('HELP'); my $code=$ftp->code; my $message=$ftp->message; print "[$okay] [$code] [$message]\n";
Some of the methods come from Net::Cmd, which Net::FTP is derived from. See the docs for both.$ perl tester [2] [214] [The following commands are recognized (* =>'s unimplemented +). USER PORT STOR MSAM* RNTO* NLST MKD* CDUP PASS PASV APPE* MRSQ* ABOR SITE XMKD* XCUP ACCT* TYPE MLFL* MRCP* DELE* SYST RMD* STOU* SMNT* STRU MAIL* ALLO* CWD STAT XRMD* SIZE REIN* MODE MSND* REST XCWD HELP PWD MDTM QUIT RETR MSOM* RNFR* LIST NOOP XPWD Direct comments to ftp@rge.com. ]
|
|---|