Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/lib.deno.d.ts>Deno.chownSync

A JavaScript extension package for building strong and modern applications.
Latest
function Deno.chownSync
allow-write
import { Deno } from "https://deno.land/x/ayonli_jsext@v0.9.72/lib.deno.d.ts";
const { chownSync } = Deno;

Synchronously change owner of a regular file or directory.

This functionality is not available on Windows.

Deno.chownSync("myFile.txt", 1000, 1002);

Requires allow-write permission.

Throws Error (not implemented) if executed on Windows.

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