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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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.

Labels (1)
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