Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/js/lib.deno.ns.d.ts>Deno.MkdirOptions

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Deno.MkdirOptions
import { type Deno } from "https://deno.land/x/deno@v1.0.0/cli/js/lib.deno.ns.d.ts";
const { MkdirOptions } = Deno;

Properties

optional
recursive: boolean

Defaults to false. If set to true, means that any intermediate directories will also be created (as with the shell command mkdir -p). Intermediate directories are created with the same permissions. When recursive is set to true, succeeds silently (without changing any permissions) if a directory already exists at the path, or if the path is a symlink to an existing directory.

optional
mode: number

Permissions to use when creating the directory (defaults to 0o777, before the process's umask). Ignored on Windows.