(path, uid, gid)
| 921 | } |
| 922 | |
| 923 | chownSync(path, uid, gid) { |
| 924 | const entry = this.#getEntry(path, 'chown', true); |
| 925 | if (uid >= 0) entry.uid = uid; |
| 926 | if (gid >= 0) entry.gid = gid; |
| 927 | entry.ctime = DateNow(); |
| 928 | } |
| 929 | |
| 930 | utimesSync(path, atime, mtime) { |
| 931 | const entry = this.#getEntry(path, 'utime', true); |