Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In the script below, note that there are spaces in the folder path saved as vFileQVD below.
When I run the script, the dirlist command fails. If I take out the spaces, it works ok.
LET vFileQVD = '\\hbsvr.adroot.myBiz\root\Download\GBL DOG - CAT';
for each Dir in dirlist($(vFileQVD)&'\*')
TRACE $(Dir);
Next Dir
exit script;
How should I wrap the string so I don't get an error?
apostrophes work for me.
for each Dir in dirlist('$(vFileQVD)' & '\*')
OK, thanks, that worked.
apostrophes work for me.
for each Dir in dirlist('$(vFileQVD)' & '\*')
OK, thanks, that worked.