how to convert date_modified value to datetime

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
Tom.Zhang
Posts: 34
Joined: Wed Jun 03, 2015 8:51 am

how to convert date_modified value to datetime

Post by Tom.Zhang »

when get response form http server with parameters: json=1&date_modified_column=1, i will get infomation like this:

{ "type":"folder", "name":"1226093 backup", "path":"XXXXXXXX", "date_modified":"130912446856077666" }

the question is how to convert 130912446856077666 to normal date time like M/d/yyyy hh:mm:ss, seems it is not the seconds from 1970/01/01.

Thanks!
salazor
Posts: 258
Joined: Tue Jun 17, 2014 10:52 am

Re: how to convert date_modified value to datetime

Post by salazor »

Dates are FILETIMEs (100-nanosecond intervals since January 1, 1601.) - like EFU format.

Here converter
Tom.Zhang
Posts: 34
Joined: Wed Jun 03, 2015 8:51 am

Re: how to convert date_modified value to datetime

Post by Tom.Zhang »

salazor wrote:Dates are FILETIMEs (100-nanosecond intervals since January 1, 1601.) - like EFU format.

Here converter

Thanks! It really helps!
Post Reply