Skip to main content
Module

x/netzo/deno.d.ts>Deno.mkdir

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function Deno.mkdir
allow-write
import { Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { mkdir } = Deno;

Creates a new directory with the specified path.

await Deno.mkdir("new_dir");
await Deno.mkdir("nested/directories", { recursive: true });
await Deno.mkdir("restricted_access_dir", { mode: 0o700 });

Defaults to throwing error if the directory already exists.

Requires allow-write permission.

Parameters

path: string | URL
optional
options: MkdirOptions

Returns

Promise<void>