Skip to main content
Module

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

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

Synchronously creates a new directory with the specified path.

Deno.mkdirSync("new_dir");
Deno.mkdirSync("nested/directories", { recursive: true });
Deno.mkdirSync("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