W3cubDocs

/Deno

Deno.chown

Change owner of a regular file or directory. This functionality is not available on Windows.

await Deno.chown("myFile.txt", 1000, 1002);

Requires allow-write permission.

Throws Error (not implemented) if executed on Windows

function chown(
path: string | URL,
uid: number | null,
gid: number | null,
): Promise<void>;
chown(path: string | URL, uid: number | null, gid: number | null): Promise<void>

Parameters

path: string | URL

path to the file

uid: number | null

user id (UID) of the new owner, or null for no change

gid: number | null

group id (GID) of the new owner, or null for no change

Return Type

Promise<void>

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.chown