conversion of EFU to CSV while reading EFU file by a third party application

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
sk2107
Posts: 324
Joined: Sun Aug 07, 2022 8:48 pm

conversion of EFU to CSV while reading EFU file by a third party application

Post by sk2107 »

Hello,

As a clarion programmer and Everything helped me a lot in dealing with files, I hope if anybody could help me while reading the EFU file directly from my application, the only thing that I need is how to find the colored values in the EFU file (which I believe that they are Date Modified and Date Created) to match the ones in the CSV file while reading the EFU from my application. (name, path, size, attribute) are OK.

this will be a great deal for me.

with lots of thanks

** EFU File:
======================
Filename,Size,Date Modified,Date Created,Attributes
"P:\test\F7.txt",1491998,129857810820000000,133045482101374297,32
"P:\test\F6.txt",1491998,129857810820000000,133045482104472879,32


** CSV File:
=====================
"Name","Path","Size","Extension","Type","Date Modified","Date Created","Attributes"
"F7.txt","P:\test",1491998,"txt","Text Document",2012-07-03 12:24:42,2022-08-09 22:50:10,"A"
"F6.txt","P:\test",1491998,"txt","Text Document",2012-07-03 12:24:42,2022-08-09 22:50:10,"A"
sk2107
Posts: 324
Joined: Sun Aug 07, 2022 8:48 pm

Re: conversion of EFU to CSV while reading EFU file by a third party application

Post by sk2107 »

I did some research and found that it is Unix Timestamp. :roll:
NotNull
Posts: 5458
Joined: Wed May 24, 2017 9:22 pm

Re: conversion of EFU to CSV while reading EFU file by a third party application

Post by NotNull »

See also this thread



In Everything 1.5 you can also define the time format that is used in EFU files:
efu_filetime

The EFU filelist filetime format

Can be one of the following values:
  • 0 = FILETIME as Decimal. (default)
  • 1 = ISO 8601 (converted to UTC).
  • 2 = ISO 8601 (with time zone offset).
sk2107
Posts: 324
Joined: Sun Aug 07, 2022 8:48 pm

Re: conversion of EFU to CSV while reading EFU file by a third party application

Post by sk2107 »

Thanks a lot. that was extremely helpful.

Best Regards
Post Reply