(path, mode)
| 71 | tryPromise("copyFile", fromPath, () => Deno.copyFile(fromPath, toPath)) |
| 72 | |
| 73 | const chmod: FileSystem.FileSystem["chmod"] = (path, mode) => tryPromise("chmod", path, () => Deno.chmod(path, mode)) |
| 74 | |
| 75 | const chown: FileSystem.FileSystem["chown"] = (path, uid, gid) => |
| 76 | tryPromise("chown", path, () => Deno.chown(path, uid, gid)) |
nothing calls this directly
no test coverage detected