Memo (organized later)
Windows epoch values are accumulated in 1-tech units from January 1, 1st. In Python, starting from January 1, 1970, it is accumulated in units of 1 second.
from datetime import datetime as dt
a = ((Windows epoch value / 10000000 * 10000000)-621355968000000000) / 10000000 date = dt.fromtimestamp(a)
Recommended Posts