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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
honeyasha
Contributor III
Contributor III

Function Name to check the Create time of Qvd

Hi ,

can any one Tell me the function Name to check the Create time of Qvd.

2 Replies
Chanty4u
MVP
MVP

Hi

Let vQVDPath = 'C:\Users\QVD';

For Each File in FileList(vQVDPath& '\*.qvd')

   

     Load

      FileName() as TableName

      ,FileTime() as FileCreateTime

      ,QvdCreateTime('$(File)') as QVDCreateTime

      ,SubField(SubField('$(File)','\',-1),'.',1) as QVDTableName

     From [$(File)] (qvd);

Next File

luis_gmb
Partner - Contributor
Partner - Contributor

Hello my friend try this:

QvdCreateTime (filename)

and

FileTime ([ filename ])