Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
prabhas277
Creator
Creator

qvd name ,time

Hi to all,

please find the below attached file. i have one qvd that is in one drive now i want qvd name and qvd creation time by using the inline

Thanks In advance.

2 Replies
simsondevadoss
Partner - Creator III
Partner - Creator III

Use the below script:

let RootPath = '  Give Your Path Name here   ';

For each file in FileList('$(RootPath)')

NewTbl:

LOAD

'$(file)'                  as filepath,

subfield('$(file)','\',-1) as newfilename,

FileTime('$(file)')        as newdatefile,

FileSize('$(file)')        as filesize

autogenerate 1;

Next;

sunilkumarqv
Specialist II
Specialist II

@hi prabhas

Please refer attached