(filePath, mode)
| 497 | } |
| 498 | |
| 499 | chmodSync(filePath, mode) { |
| 500 | const providerPath = this.#toProviderPath(filePath); |
| 501 | this[kProvider].chmodSync(providerPath, mode); |
| 502 | } |
| 503 | |
| 504 | chownSync(filePath, uid, gid) { |
| 505 | const providerPath = this.#toProviderPath(filePath); |