date converter :)

If you are experiencing problems with "Everything", post here for assistance.
Locked
tecH
Posts: 1
Joined: Thu Jan 16, 2020 9:40 am

date converter :)

Post by tecH »

Hello everyone. How to convert this type of date "132216175523932590" to usual time? :oops:
Thanks.
void
Developer
Posts: 15351
Joined: Fri Oct 16, 2009 11:31 pm

Re: date converter :)

Post by void »

Everything stores dates as a Windows FILETIME.

The Windows FILETIME is a 64-bit integer representing the number of 100-nanosecond intervals since the beginning of the year 1601, UTC (ignoring leap seconds).

What language are you using? There are often APIs provided to convert from FILETIMEs to an internal datetime structure.
NotNull
Posts: 5260
Joined: Wed May 24, 2017 9:22 pm

Re: date converter :)

Post by NotNull »

Locked