mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
37 lines
932 B
TypeScript
37 lines
932 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { CallbackWithError } from "./_fs_common.ts";
|
|
|
|
/**
|
|
* TODO: Also accept 'path' parameter as a Node polyfill Buffer or URL type once these
|
|
* are implemented. See https://github.com/denoland/deno/issues/3403
|
|
*/
|
|
export function chown(
|
|
path: string,
|
|
uid: number,
|
|
gid: number,
|
|
callback: CallbackWithError
|
|
): void {
|
|
new Promise(async (resolve, reject) => {
|
|
try {
|
|
await Deno.chown(path, uid, gid);
|
|
resolve();
|
|
} catch (err) {
|
|
reject(err);
|
|
}
|
|
})
|
|
.then(() => {
|
|
callback();
|
|
})
|
|
.catch(err => {
|
|
callback(err);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* TODO: Also accept 'path' parameter as a Node polyfill Buffer or URL type once these
|
|
* are implemented. See https://github.com/denoland/deno/issues/3403
|
|
*/
|
|
export function chownSync(path: string, uid: number, gid: number): void {
|
|
Deno.chownSync(path, uid, gid);
|
|
}
|