deno.land / std@0.166.0 / node / _fs / _fs_chown.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { type CallbackWithError, makeCallback } from "./_fs_common.ts";import { getValidatedPath, kMaxUserId } from "../internal/fs/utils.mjs";import * as pathModule from "../../path/mod.ts";import { validateInteger } from "../internal/validators.mjs";import type { Buffer } from "../buffer.ts";import { promisify } from "../internal/util.mjs";
/** * Asynchronously changes the owner and group * of a file. */export function chown( path: string | Buffer | URL, uid: number, gid: number, callback: CallbackWithError,) { callback = makeCallback(callback); path = getValidatedPath(path).toString(); validateInteger(uid, "uid", -1, kMaxUserId); validateInteger(gid, "gid", -1, kMaxUserId);
Deno.chown(pathModule.toNamespacedPath(path), uid, gid).then( () => callback(null), callback, );}
export const chownPromise = promisify(chown) as ( path: string | Buffer | URL, uid: number, gid: number,) => Promise<void>;
/** * Synchronously changes the owner and group * of a file. */export function chownSync( path: string | Buffer | URL, uid: number, gid: number,) { path = getValidatedPath(path).toString(); validateInteger(uid, "uid", -1, kMaxUserId); validateInteger(gid, "gid", -1, kMaxUserId);
Deno.chownSync(pathModule.toNamespacedPath(path), uid, gid);}
std

Version Info

Tagged at
a year ago