Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all, I want to find No Of QVDs in a folder with their names....?????
Like i will give path of a folder and in return i should get how many qvds are there in a folder.
Can anyone help me...?
The basic structure you should use is the following:
Set vFolder = 'C:\Users';
for each vFoundFile in filelist( vFolder & '\*.qvd')
FileList:
Load '$(vFoundFile)' as SourceFile autogenerate 1;
next vFoundFile
Then you can use Count(SourceFile) to find the number. You could optionally also load the file itself inside the loop.
HIC
The basic structure you should use is the following:
Set vFolder = 'C:\Users';
for each vFoundFile in filelist( vFolder & '\*.qvd')
FileList:
Load '$(vFoundFile)' as SourceFile autogenerate 1;
next vFoundFile
Then you can use Count(SourceFile) to find the number. You could optionally also load the file itself inside the loop.
HIC
Thanks a lttt Sir....its working fine.