Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to list all files at a given file location (data connection)?
What I am looking for is the the same function as used to be possible using FileList() function but for a given data connection
You can use FileList and pass your Data Connection name like you would do with a regular Windows Path:
For example:
For Each vFile in FileList('lib:\\MyLib\MyFolder\*.qvd')
Next vFile
Hi @AndyS2,
What is your Qlik Platform (QlikView, Qlik Sense, Qlik Cloud) and what is your Data Connection or Data Source (Folder connection, S3, Sharepoint, etc)?
Hi Mark,
I'm using Qlik Sense and the Data Connection is a folder connection. For development purposes, it is a folder on my laptop...
...\Documents\Qlik\Sense\QDF\DEV\99.Shared_Folders\1.QVD\3.Load\revenue\dims
You can use FileList and pass your Data Connection name like you would do with a regular Windows Path:
For example:
For Each vFile in FileList('lib:\\MyLib\MyFolder\*.qvd')
Next vFile
Thanks for your help Mark