Is there some registry switch or something in Windows 7 to make the file dates reflect changes to the names of files?
I'm not talking about adding columns to Windows Explorer; I know how to do that. I'm talking about the basic file information in the WIN32_FIND_DATA structure. It has three date fields:
FILETIME ftCreationTime;
FILETIME ftLastAccessTime;
FILETIME ftLastWriteTime;
If I rename an old file, I would expect at least the Access Time, and maybe the LastWrite time, to be changed. But after I rename a file, neither date is changed when I run VC++ in debug mode, do a FindFirstFile on the directory, and look at the file's WIN32_FIND_DATA structure in the watch window.
Of course I'm using NTFS on Win 7. Any help appreciated.
I'm not talking about adding columns to Windows Explorer; I know how to do that. I'm talking about the basic file information in the WIN32_FIND_DATA structure. It has three date fields:
FILETIME ftCreationTime;
FILETIME ftLastAccessTime;
FILETIME ftLastWriteTime;
If I rename an old file, I would expect at least the Access Time, and maybe the LastWrite time, to be changed. But after I rename a file, neither date is changed when I run VC++ in debug mode, do a FindFirstFile on the directory, and look at the file's WIN32_FIND_DATA structure in the watch window.
Of course I'm using NTFS on Win 7. Any help appreciated.