I want my do while to execute till the time a file is not present after download OR it should execute till my present time < 1 minute. Below is what I did:
Assign Time1Min = Now.Add(1)
I am trying to execute a Do while with below 2 condition:
(Now < Time1Min) OR (Not File.exists(“C:\Temp\abc.csv”))
The loop is continuing till the csv file is not there. I want the loop to end within 1 minute even if the file is not there.