
What I want to do is test whether or not a file is on a remote system, using an FTP connection. I don't think HM can do that out-of-the-box, so I guess I need a bit of scripting - and I don't know how to ...
In "pseudo-code" it should probably look like :
do case
case Open_Ftp_Port() <> "OK"
exit("Error : No FTP port")
case Remote_Login() <> "OK"
exit("Error : Missing or Invalid account")
case Find_File() <> "OK"
exit("Error : File not found")
otherwise
Remote_Logoff()
exit("SUCCESS")
endcase
As I said, I'm new to it and would VERY MUCH appreciate a detailed reply.



Thanks,
Ludo