File_WaitForFileToExist(sFile, iWaitMaxMin, iCheckIntervalSec, bMustExist)
Checks Check if a specified file exist, and waits until file exist or until timeout occurs
If file is created before timeout occurs, gbValue returns TRUE, otherwise gbValue returns FALSE.
...
ARGUMENT | DESCRIPTION | TYPE |
---|---|---|
sFile | The file to check existenseexistence/wait for | String |
iWaitMaxMin | Number of minutes to wait for file to be deleted before exiting | Integer |
iCheckIntervalSec | Number of seconds between checks | Integer |
bMustExist | If TRUE function will fail if timeout is reached and file does not exist | Boolean |
...