* @param fileName The file name to test.
* @return true if exists, false otherwise.
*/
public static boolean exists(String hostName, String fileName) {
CmdService cs = CmdService.getHandle();
return cs.doesFileExist(hostName, fileName);
}
/**
* Checks whether the given remote file exists and is a normal file.
* @param hostName The host name to check.