We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
trying to do same as EndOfFile
for (var i = 0; i < v.length; i++) { val += v[i] * Math.pow(2, i * 8); }
got "CreationTime": 132221877448853630 which is not valid timestamp
"CreationTime": 132221877448853630
in which format it is transfered
The text was updated successfully, but these errors were encountered:
No idea, please take a look at the specification: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962
Sorry, something went wrong.
function convert(time){ var winTicks = 10000000; var uEpoch = 11644473600; var unixTime = time/winTicks - uEpoch; console.log(unixTime); var utc = new Date(unixTime * 1000).toUTCString(); console.log("utc",utc) } convert(132291632112018540)
No branches or pull requests
trying to do same as EndOfFile
got
"CreationTime": 132221877448853630
which is not valid timestamp
in which format it is transfered
The text was updated successfully, but these errors were encountered: