I have a problem decrypting the date and time recieved from WinInet.
When i use cuteFTP i get the correct date and time, but using wininet API i get:
(should be 24. March 2007):
dwHighDateTime = 29847065
dwLowDateTime 2143413760
I read somewhere that i should convert it like this:
X = DateTime.FromFi leTime(10000000 * (high+low) + 116444736000000 000)
but it isn't correct
When i use cuteFTP i get the correct date and time, but using wininet API i get:
(should be 24. March 2007):
dwHighDateTime = 29847065
dwLowDateTime 2143413760
I read somewhere that i should convert it like this:
X = DateTime.FromFi leTime(10000000 * (high+low) + 116444736000000 000)
but it isn't correct
Comment