2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-07-06 21:45:39 -04:00
|
|
|
|
2020-03-09 19:22:15 -04:00
|
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
2020-06-11 12:36:20 -04:00
|
|
|
import { pathFromURL } from "../../util.ts";
|
2019-05-07 21:58:58 -04:00
|
|
|
|
2020-07-06 07:15:13 -04:00
|
|
|
export function chownSync(
|
|
|
|
path: string | URL,
|
|
|
|
uid: number | null,
|
|
|
|
gid: number | null
|
|
|
|
): void {
|
2020-07-06 21:45:39 -04:00
|
|
|
sendSync("op_chown", { path: pathFromURL(path), uid, gid });
|
2019-05-07 21:58:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function chown(
|
2020-06-11 12:36:20 -04:00
|
|
|
path: string | URL,
|
2020-07-06 07:15:13 -04:00
|
|
|
uid: number | null,
|
|
|
|
gid: number | null
|
2019-05-07 21:58:58 -04:00
|
|
|
): Promise<void> {
|
2020-07-06 21:45:39 -04:00
|
|
|
await sendAsync("op_chown", { path: pathFromURL(path), uid, gid });
|
2019-05-07 21:58:58 -04:00
|
|
|
}
|