Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

dir_exists

import { dir_exists } from "https://raw.githubusercontent.com/olaven/dio/master/mod.ts";

Returns true or false depending on wether a directory exists at the path or not.

async function dir_exists(path: string): Promise<boolean>;
§
dir_exists(path: string): Promise<boolean>
[src]

§Parameters

§
path: string
[src]

path to file

§Return Type

§
Promise<boolean>
[src]