What win32 API C functions can I use to read the modification/access/created dates of a file?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the GetFileTime function. You need to open the file to use this function. Also, the appropriately named SetFileTime function will let you modify the times. |
|||
|
|