in reply to FTP question

Net::FTP will allow you to deal with FTP sessions.

You can't FTP to a machine that isn't running an FTP server.
I'm not sure if it's possible to check for the status returned when FTP commands fail - I'm pretty sure it is possible, but I'd have to RTFM.

Your question is rather unclear - are you trying to connect to a remote box and carry out an FTP transaction, or are you trying to monitor a system locally by FTP'ing to yourself and/or run a command like 'top' or 'ps'?

Update: Thinking about this, some well placed error checking (eval statements? Don't quote me on that) should let you know if the initial connection attempt to the FTP server failled...

Replies are listed 'Best First'.
Re: Re: FTP question.
by maslas (Novice) on Jan 02, 2002 at 22:06 UTC

    Thank you,

    I am trying to connect to a remote box and carry out an FTP transaction as well as run other processes on the remote platform. The parent platform is a Solaris OS which I want to connect to an NT server to perform various commands.

    Primarily I want to FTP the files from this machine to another machine and report any errors in the transfer back to the parent.
    Regards,
    Michael