try {
// Call the 'fstype' script of the proper architecture
String fstypeScript = sge_root + "/utilbin/" + arch + "/fstype";
FsTypeCommand fstypeCmd = new FsTypeCommand(host, DEF_CONNECT_USER, shell, IS_MODE_WINDOWS, fstypeScript, dir);
fstypeCmd.execute();
if (fstypeCmd.getExitValue() == EXIT_VAL_SUCCESS) {
result = fstypeCmd.getOutput().firstElement().trim();
Debug.trace("FSType of '" + dir + "' is '" + result +"'.");
} else {