Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
QvdCreateTime('c:\path...') works fine.
But
Set variable = 'c:\path...';
LET isExists = QvdCreateTime($(variable)); doesn't work. Why?
The variable needs to be within single quotes.
LET isExists = QvdCreateTime('$(variable)');
Try this:
let vtest = QvdCreateTime(variable);
The variable needs to be within single quotes.
LET isExists = QvdCreateTime('$(variable)');
Use let instead of let
then you will able to perform this.
Thank you for your replying.
Your comment is correct too. But using '$' mark is more useful in my case.
Thank you.
Your comment fixed my trouble, thank you.
I couldn't wonder such a way by myself ...