Skip to main content
Deno.removeSync - Deno documentation
function Deno.removeSync
allow-write
removeSync(
path: string | URL,
options?: RemoveOptions,
): void
Synchronously removes the named file or directory. ```ts Deno.removeSync("/path/to/empty_dir/or/file"); Deno.removeSync("/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

Return Type

void