2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-10 00:22:15 +01:00
|
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
2018-09-10 20:40:03 -07:00
|
|
|
|
2020-03-02 15:24:42 -05:00
|
|
|
export interface RemoveOptions {
|
2019-01-29 06:54:52 +08:00
|
|
|
recursive?: boolean;
|
2018-09-10 20:40:03 -07:00
|
|
|
}
|
|
|
|
|
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 20:40:03 -07:00
|
|
|
}
|
|
|
|
|
2019-01-29 06:54:52 +08:00
|
|
|
export async function remove(
|
|
|
|
path: string,
|
2020-03-02 15:24:42 -05:00
|
|
|
options: RemoveOptions = {}
|
2019-01-29 06:54:52 +08:00
|
|
|
): Promise<void> {
|
2020-02-25 09:14:27 -05:00
|
|
|
await sendAsync("op_remove", { path, recursive: !!options.recursive });
|
2018-09-10 20:40:03 -07:00
|
|
|
}
|