12345678910111213141516171819 |
- #include "../system/utime.h"
- #ifdef _MSC_VER
- #include <sys/utime.h>
- #else
- #define HDR <../include/utime.h>
- #include HDR
- #endif
- int TouchFile(const char* filePath) {
- return utime(filePath, nullptr);
- }
- int SetModTime(const char* filePath, time_t modtime, time_t actime) {
- struct utimbuf buf;
- buf.modtime = modtime;
- buf.actime = actime;
- return utime(filePath, &buf);
- }
|