Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
All,
Please help me in getting qvd available information in a variable. It should be value one if qvd is available otherwise zero if qvd is not available.
if(test.qvd is available)
then
set a=1
else
set a=0
Thanks,
Karthi
set a=0;
for each file in filelist (test.qvd) //fullpath name
set a =1;
next
I have a feeling you will lose the need for your variable with this logic as you can now just place the scripting you want when a=1 inside the for each loop.