Skip to main content
Module

x/deno/js/chmod.ts>chmod

A modern runtime for JavaScript and TypeScript.
Go to Latest
function chmod
import { chmod } from "https://deno.land/x/deno@v0.17.0/js/chmod.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>