blob: a52f84a80c87517b76e22be7caf9a3c05959d953 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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);
}
|