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

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

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

Synchronously changes the permission of a specific file/directory of specified path. Ignores the process's umask.

Deno.chmodSync("/path/to/file", 0o666);

For a full description, see Deno.chmod.

NOTE: This API currently throws on Windows

Requires allow-write permission.

Parameters

path: string | URL
mode: number