If you are experiencing problems with "Everything", post here for assistance.
-
Tom.Zhang
- Posts: 34
- Joined: Wed Jun 03, 2015 8:51 am
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
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
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!