DateTimeToFileTime function
Date/Time routines |
![]() ![]() ![]() |
acUtils
|
function DateTimeToFileTime(Time: TDateTime): TFileTime;
|
The DateTimeToFileTime function converts the Delphi-friendly TDateTime variable to the TFileTime record, which used in Windows file system to determinate the file creation and modification times.
|
|
![]() |
|
typedef struct _FILETIME { // ft
|
DWORD dwLowDateTime;
|
DWORD dwHighDateTime;
|
} FILETIME;
|
FileTimeToDateTime and SetFileTimes routines.
|