in reply to Need syntax help for Net::FTP::Quot

Hi All,

In case it helps someone else, this is how to delete with Net::FTP::quot

The RFC:
DELE <SP> <pathname> <CRLF>
if ( $ftp->quot ( "DELE", "$Target" ) ) { print "File $Target was directly deleted by ftp->quot\n"; } else { print "File $Target failed to delete with ftp->quot\n"; }
-T