メモ(後で整理)
Windowsエポック値は、1年1月1日からの1テック単位の積み上げ。
Pythonでは、1970年1月1日を起点として1秒単位の積み上げ。
from datetime import datetime as dt
a = ((Windowsエポック値/10000000*10000000)-621355968000000000)/10000000
date = dt.fromtimestamp(a)
Go to list of users who liked
More than 5 years have passed since last update.
メモ(後で整理)
Windowsエポック値は、1年1月1日からの1テック単位の積み上げ。
Pythonでは、1970年1月1日を起点として1秒単位の積み上げ。
from datetime import datetime as dt
a = ((Windowsエポック値/10000000*10000000)-621355968000000000)/10000000
date = dt.fromtimestamp(a)
Register as a new user and use Qiita more conveniently
Go to list of users who liked