(path, atime, mtime)
| 935 | } |
| 936 | |
| 937 | lutimesSync(path, atime, mtime) { |
| 938 | const entry = this.#getEntry(path, 'utime', false); |
| 939 | entry.atime = toMs(atime); |
| 940 | entry.mtime = toMs(mtime); |
| 941 | entry.ctime = DateNow(); |
| 942 | } |
| 943 | |
| 944 | // === WATCH OPERATIONS === |
| 945 |