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
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
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)?
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
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
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
Thanks for your help Mark