Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Get all qvw file names

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

1 Reply
m_woolf
Master II
Master II

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