in reply to Net::FTP and $ftp->delete

Something like this should help out:
$ftp->delete($filename) or die $ftp->message();

message() is inherited from Net::Cmd and it returns the text message returned from the last command.

Replies are listed 'Best First'.
Re: Re: Net::FTP and $ftp->delete
by Anonymous Monk on Aug 06, 2003 at 23:59 UTC
    Mr. Muskrat: I tried that as well. It gives nothing back. Thanks Genghis Khan