(filePath, uid, gid)
| 1233 | }, |
| 1234 | |
| 1235 | async lchown(filePath, uid, gid) { |
| 1236 | const providerPath = toProviderPath(filePath); |
| 1237 | provider.chownSync(providerPath, uid, gid); |
| 1238 | }, |
| 1239 | |
| 1240 | async utimes(filePath, atime, mtime) { |
| 1241 | const providerPath = toProviderPath(filePath); |
no test coverage detected