in reply to Re: Net::FTP and standard output
in thread Net::FTP and standard output

how exactly does one use $ftp->message()

i tried it once, like this

$mess = $ftp->message(); print "$mess";

but i either got a single digit number and nothing else or no text at all. id like to learn how to use all the Net::CMD features for Net::FTP usage, but i cant find any place that show any examples. and i learn much better from examples. :)

Replies are listed 'Best First'.
Re: Re: Re: Net::FTP and standard output
by petral (Curate) on Jan 03, 2002 at 22:55 UTC
    Try
    @mess = $ftp->message(); print "@mess";
    I guess I pretty much just walked through the stuff using the debugger to get at the "inner" functionality.  And, yea, that "${*$ftpv}{net_cmd_resp}" stuff is strange.

      p