Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Filetime function

     Dear Qlikers,

I have taken all qvw files from some folder script is like below

load

      filename() as FIlename

      fileTime() as fileTime

from folderpath;

for some of the files it is not displaying file time.

those got refereshed properly.

for some which are reloading in server it is not displaying filetime.

but those got refreshed in the morning @ 7:00am not displaying filetime

Regards

$@M

3 Replies
Not applicable
Author

Hi,

Use the following script

if you are checking the QVW files.

load

      filename() as FIlename,

      fileTime() as fileTime

from *.qvw;

if you are checking the text files.

load

      filename() as FIlename,

      fileTime() as fileTime

from *.txt;

Regards,

Venkat Reddy

Not applicable
Author

HI Venkat,

I have given like below

load

     filename() as filename,

     filetime() as filetime

from *.qvw.

still no use.

Regards

Sam

Not applicable
Author

send me your qvw file