Skip to main content
Module

x/wmill/deps.ts>ensureDir

Open-source developer platform to turn scripts into workflows and UIs. Fastest workflow engine (5x vs Airflow). Open-source alternative to Airplane and Retool.
Go to Latest
function ensureDir
import { ensureDir } from "https://deno.land/x/wmill@v1.323.1/deps.ts";

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

Examples

Example 1

import { ensureDir } from "https://deno.land/std@0.224.0/fs/mod.ts";

ensureDir("./bar"); // returns a promise

Parameters

dir: string | URL