tags:

views:

292

answers:

1

What win32 API C functions can I use to read the modification/access/created dates of a file?

+1  A: 

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.

zildjohn01