Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm trying to get all qvw file names located in a folder name 'Develop'.
My script is:
LOAD filename() as Name
from D:\Qlikview\Develop\*.qvw
For some reason, not all qvw's are retrieved although they are in that folder.
Did anyone no what the problem is?
p.s - I tried an alternative way of getting the names by doing a loop over all files, didnt work either.
Thanks a lot,
Gili
This worked for me:
let Root = '\\hraoqvwtst01\Private Data\Dev Documents\Applications\_mw';
FOR Each File in filelist (Root & '\*.qvw')
LOAD
$(File)' as Name,
FileSize( '$(File)' ) as Size,
FileTime( '$(File)' ) as FileTime
autogenerate 1;
NEXT File