Hello everyone. How to convert this type of date "132216175523932590" to usual time?
Thanks.
date converter :)
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.