Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/std/fs/mod.ts>ensureDir

A modern runtime for JavaScript and TypeScript.
Go to Latest
function ensureDir
Re-export
import { ensureDir } from "https://deno.land/x/deno@v0.28.0/std/fs/mod.ts";

Ensures that the directory exists. If the directory structure does not exist, it is created. Like mkdir -p. Requires the --allow-read and --alow-write flag.

Parameters

dir: string

Returns

Promise<void>