When using the wininet function
to read an ftp directory, is the date for each remote file represented by any of the values in the WIN32_FIND_DATA struct?
There are three date values in WIN32_FIND_DATA: ftCreationTime, ftLastAccessTime, ftLastWriteTime (all FILETIME structs)
ftCreationTime and ftLastAccessTime are coming back as 0. The other date, ftLastWriteTime, is returning a non-zero value but it works out to something like the year 2035. Anyone?
Code:
InternetFindNextFile(HFILE, WIN32_FIND_DATA*)
There are three date values in WIN32_FIND_DATA: ftCreationTime, ftLastAccessTime, ftLastWriteTime (all FILETIME structs)
ftCreationTime and ftLastAccessTime are coming back as 0. The other date, ftLastWriteTime, is returning a non-zero value but it works out to something like the year 2035. Anyone?