How I can change folder properties (last modified date, creation date,
last accessed date and attributes)?Thanks.
Posted on 2002-08-27 01:38:11 by Corriolio
change the attributes with SetFileAttributes, this works with dirs and files.
change time and date with SetFileTime.
Posted on 2002-08-27 03:54:23 by beaster
Use CreateFile with FILE_FLAG_BACKUP_SEMANTICS to get a handle to a directory.
Posted on 2002-08-27 10:58:01 by comrade