Group: Time - Library: kernel32
Comparing file times
Building a tree of subdirectories for a given path using FindFile functions
LONG CompareFileTime(
CONST FILETIME *lpFileTime1, // first file time
CONST FILETIME *lpFileTime2 // second file time
);
DECLARE INTEGER CompareFileTime IN kernel32;
STRING lpFileTime1,;
STRING lpFileTime2
lpFileTime1 [in] Pointer to a FILETIME structure that specifies the first file time.
lpFileTime2 [in] Pointer to a FILETIME structure that specifies the second file time.
The return value is one of the following values.
Value Meaning –1 First file time is less than second file time. 0 First file time is equal to second file time. 1 First file time is greater than second file time.