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
|
|
|
|
2019-01-28 17:54:52 -05:00
|
|
|
export interface RemoveOption {
|
|
|
|
recursive?: boolean;
|
2018-09-10 23:40:03 -04:00
|
|
|
}
|
|
|
|
|
2020-02-03 08:20:15 -05:00
|
|
|
/** Removes the named file, directory or symlink synchronously. Would throw
|
2019-01-28 17:54:52 -05:00
|
|
|
* error if permission denied, not found, or directory not empty if `recursive`
|
|
|
|
* set to false.
|
|
|
|
* `recursive` is set to false by default.
|
2018-09-10 23:40:03 -04:00
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* Deno.removeSync("/path/to/dir/or/file", {recursive: false});
|
2018-09-10 23:40:03 -04:00
|
|
|
*/
|
2019-01-28 17:54:52 -05:00
|
|
|
export function removeSync(path: string, options: RemoveOption = {}): 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-02-03 08:20:15 -05:00
|
|
|
/** Removes the named file, directory or symlink. Would throw error if
|
2019-01-28 17:54:52 -05:00
|
|
|
* permission denied, not found, or directory not empty if `recursive` set
|
|
|
|
* to false.
|
|
|
|
* `recursive` is set to false by default.
|
2018-09-10 23:40:03 -04:00
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* await Deno.remove("/path/to/dir/or/file", {recursive: false});
|
2018-09-10 23:40:03 -04:00
|
|
|
*/
|
2019-01-28 17:54:52 -05:00
|
|
|
export async function remove(
|
|
|
|
path: string,
|
|
|
|
options: RemoveOption = {}
|
|
|
|
): 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
|
|
|
}
|