2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-08 08:09:22 -04:00
|
|
|
import { sendSync, sendAsync } from "./ops/dispatch_json.ts";
|
2019-05-07 21:58:58 -04:00
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Synchronously change owner of a regular file or directory. Linux/Mac OS
|
|
|
|
* only at the moment.
|
|
|
|
*
|
|
|
|
* Requires `allow-write` permission.
|
|
|
|
*
|
2019-05-07 21:58:58 -04:00
|
|
|
* @param path path to the file
|
|
|
|
* @param uid user id of the new owner
|
|
|
|
* @param gid group id of the new owner
|
|
|
|
*/
|
|
|
|
export function chownSync(path: string, uid: number, gid: number): void {
|
2020-02-25 09:14:27 -05:00
|
|
|
sendSync("op_chown", { path, uid, gid });
|
2019-05-07 21:58:58 -04:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Change owner of a regular file or directory. Linux/Mac OS only at the
|
|
|
|
* moment.
|
|
|
|
*
|
|
|
|
* Requires `allow-write` permission.
|
|
|
|
*
|
2019-05-07 21:58:58 -04:00
|
|
|
* @param path path to the file
|
|
|
|
* @param uid user id of the new owner
|
|
|
|
* @param gid group id of the new owner
|
|
|
|
*/
|
|
|
|
export async function chown(
|
|
|
|
path: string,
|
|
|
|
uid: number,
|
|
|
|
gid: number
|
|
|
|
): Promise<void> {
|
2020-02-25 09:14:27 -05:00
|
|
|
await sendAsync("op_chown", { path, uid, gid });
|
2019-05-07 21:58:58 -04:00
|
|
|
}
|