Hi, In my process, I would like to verify the presence of a file. If this file exists, I launch the execution of .bat with the tSysytem component. If this file does not exist, I make nothing. My question is: is there a component which allows to verify the existence of a file? If it is not the case, I think of using a component tJava to develop in Java a function which verifies the existence of this file. Thank you for your help.
Hello, tFileExist_1 -----------if-----------> (...) In the if condition put : ((Boolean)globalMap.get("tFileExist_1_EXISTS"))==true If you want to continue if file exist or ((Boolean)globalMap.get("tFileExist_1_EXISTS"))==false If you want to continue if file doesn't exist