Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm a bit at loss. Trying to run a script only, if the filetime of a qvd is older then 3 hours.
Script is:
let vFileTime1 = FileTime('lib://path_to_my _file);
IF $(vFileTime1) < (Now()-MakeTime(3)) then
load ...
Getting this error:
Try without dollar sign expansion:
IF vFileTime1 < (Now()-MakeTime(3)) then