The following functions, macros, and classes are provided in utime.h:
Name |
Description |
Header File utime.h Category Input/output Routines Prototype int _utime(char *path, struct utimbuf *times); int _wutime(wchar_t *path, struct _utimbuf *times); Description Sets file time and date. _utime sets the modification time for the file path. The modification time is contained in the utimbuf structure pointed to by times. This structure is defined in utime.h, and has the following format: struct utimbuf { time_t actime; /* access time */ time_t modtime; /* modification time */ }; The FAT (file allocation table) file system supports only a modification time; therefore, on FAT file systems _utime ignores actime and uses only modtime to set... more |
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|