Skip to main content
Module

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

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

Removes the named file or directory.

await Deno.remove("/path/to/empty_dir/or/file");
await Deno.remove("/path/to/populated_dir/or/file", { recursive: true });

Throws error if permission denied, path not found, or path is a non-empty directory and the recursive option isn't set to true.

Requires allow-write permission.

Parameters

path: string | URL
optional
options: RemoveOptions

Returns

Promise<void>