2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import { sendSync, sendAsync } from "./dispatch_json.ts";
|
2018-09-10 23:40:03 -04:00
|
|
|
|
2020-03-02 15:24:42 -05:00
|
|
|
export interface RemoveOptions {
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Defaults to `false`. If set to `true`, path will be removed even if
|
|
|
|
* it's a non-empty directory. */
|
2019-01-28 17:54:52 -05:00
|
|
|
recursive?: boolean;
|
2018-09-10 23:40:03 -04:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Synchronously removes the named file or directory. Throws error if
|
|
|
|
* permission denied, path not found, or path is a non-empty directory and
|
|
|
|
* the `recursive` option isn't set to `true`.
|
2018-09-10 23:40:03 -04:00
|
|
|
*
|
2020-03-02 10:19:42 -05:00
|
|
|
* Deno.removeSync("/path/to/dir/or/file", { recursive: false });
|
|
|
|
*
|
|
|
|
* Requires `allow-write` permission. */
|
2020-03-02 15:24:42 -05:00
|
|
|
export function removeSync(path: string, options: RemoveOptions = {}): void {
|
2020-02-25 09:14:27 -05:00
|
|
|
sendSync("op_remove", { path, recursive: !!options.recursive });
|
2018-09-10 23:40:03 -04:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Removes the named file or directory. Throws error if permission denied,
|
|
|
|
* path not found, or path is a non-empty directory and the `recursive`
|
|
|
|
* option isn't set to `true`.
|
|
|
|
*
|
|
|
|
* await Deno.remove("/path/to/dir/or/file", { recursive: false });
|
2018-09-10 23:40:03 -04:00
|
|
|
*
|
2020-03-02 10:19:42 -05:00
|
|
|
* Requires `allow-write` permission. */
|
2019-01-28 17:54:52 -05:00
|
|
|
export async function remove(
|
|
|
|
path: string,
|
2020-03-02 15:24:42 -05:00
|
|
|
options: RemoveOptions = {}
|
2019-01-28 17:54:52 -05:00
|
|
|
): Promise<void> {
|
2020-02-25 09:14:27 -05:00
|
|
|
await sendAsync("op_remove", { path, recursive: !!options.recursive });
|
2018-09-10 23:40:03 -04:00
|
|
|
}
|