Thanks.
date converter :)
-
tecH
- Posts: 1
- Joined: Thu Jan 16, 2020 9:40 am
date converter :)
Hello everyone. How to convert this type of date "132216175523932590" to usual time? 
Thanks.
Thanks.
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: date converter :)
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.
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: 5961
- Joined: Wed May 24, 2017 9:22 pm