(filePath, uid, gid)
| 502 | } |
| 503 | |
| 504 | chownSync(filePath, uid, gid) { |
| 505 | const providerPath = this.#toProviderPath(filePath); |
| 506 | this[kProvider].chownSync(providerPath, uid, gid); |
| 507 | } |
| 508 | |
| 509 | utimesSync(filePath, atime, mtime) { |
| 510 | const providerPath = this.#toProviderPath(filePath); |
no test coverage detected