File Modified Date in Unixtime?
I just found a function to give me modified date, but how do I make that date into unixtime?
2 posts
unsigned long long ll = (st.st_mtime * 10000000LL) + 116444736000000000LL;
high = (DWORD) (ll >> 32);
low = (DWORD) ll;