aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/utime.cpp
blob: aed0317ac0b260770f71630df2ae6c3215806fee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "../system/utime.h"

#ifdef _MSC_VER
    #include <sys/utime.h>
#else
    #include <utime.h>
#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);
}