Have a server who keeps throwing errors in a workflow, when picking up a large number (+10000) of files from a folder.
The “Folder input plugin” gives this error:
ERROR: 03:30:31.410 [0014] File move failed : C:\GG\Flows\Intrum_Normal\Input\xxxx_28562228.pdf
ERROR: 03:30:31.410 [0014] W3011 : Input folder error: A call to an OS function failed
ERROR: 03:30:31.410 [0014] Folder Capture: W1603 : Plugin failed - 03:30:31 (elapsed time: 00:00:00.063)
There is no antivirus on the server, except for windows defender – witch I have disabled.
I know I can continue in the workflow with an error message, but can I via a script then read the next file from the folder – then I could continue the flow. Don’t know what delays the read of the files.
The script could be something like:
if Right(Watch.GetVariable(“ErrorMessage”), 6) = “ERROR” then
Watch.Sleep 2000
Do something to load the next file…
end if