Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/deno/cli/js/deno.ts>chmod

A modern runtime for JavaScript and TypeScript.
Go to Latest
function chmod
import { chmod } from "https://deno.land/x/deno@v0.30.0/cli/js/deno.ts";

Changes the permission of a specific file/directory of specified path.

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

Parameters

path: string
mode: number

Returns

Promise<void>