Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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 ])