![]() |
Aktuelle Systemzeit als UnixTime(-Stamp)
Für alle die, die die aktuelle Systemzeit als Unix-Timestamp brauchen:
Daraus lässt sich nat. auch eine beliebige Zeit in UnixTime wandeln...
Delphi-Quellcode:
[edit=Daniel B]Delphi-Tags korrigiert. Mfg, Daniel B[/edit]
function GetUnixTime: int64;
var st:_SYSTEMTIME; ft:_FILETIME; begin // first get windows SYSTEMTIME in UTC / GMT GetSystemTime(st); // now convert to windows FILETIME SystemTimeToFileTime(st, ft); // now to UNIXTIME result := round((int64(ft) - int64(116444736000000000)) / 10000000); end; [edit=Chakotay1308]Funktion korrigiert. Mfg, Chakotay1308[/edit] [edit=Matze]Code formatiert. Mfg, Matze[/edit] [edit=Chakotay1308]Klassifizierung. Mfg, Chakotay1308[/edit] [edit=fkerber]Neu abgespeichert wg. Code-Highlighting. Mfg, fkerber[/edit] |
Alle Zeitangaben in WEZ +1. Es ist jetzt 10:19 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz