![]() |
_FILETIME to String
Hi,
Hab mal ne kurze Frage, und zwar, wie bekommt man den Datentyp _FILETIME (in der Unit Windows) zu einen String? TimeToStr() funktioniert leider nicht. Danke :zwinker: |
Re: _FILETIME to String
|
Re: _FILETIME to String
Danke, hab jetzt folgendes:
Delphi-Quellcode:
Is das richtig so?
function FileTimeToStr(const FT: _FILETIME): String;
var ST: SYSTEMTIME; begin if FileTimeToSystemTime(FT, ST) then Result := TimeToStr(SystemTimeToDateTime(ST)); end; Es liefert mir nämlich immer 00:00:00 zurück. |
Re: _FILETIME to String
Wie liest du denn die Zeit ein ?
|
Re: _FILETIME to String
Zitat:
|
Re: _FILETIME to String
So funktioniert es bei mir:
Delphi-Quellcode:
function FileTimeToString(const fTime: TFileTime): string;
var sTime: TSystemTime; begin Result := ''; if FileTimeToSystemTime(fTime,sTime) then Result := DateTimeToStr(SystemTimeToDateTime(sTime)); end; |
Re: _FILETIME to String
Danke, kommt zwar das gleiche bei raus, aber dann liegt es wohl daran, das die Datei(en) keine Creation, LastAccess Zeiten (mehr) haben.
|
Re: _FILETIME to String
Zitat:
|
Re: _FILETIME to String
Zitat:
Nur LastWriteTime wird korrekt angezeigt, bei CreationTime und LastAccessTime steht immer 01.01.1601 bzw. 00:00:00. Bei SmartFTP wird auch nur eine Zeit angezeigt, d.h wohl, dass die anderen Zeiten nicht auf jedem FTP verfügbar sind. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:27 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