2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-09 19:22:15 -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 {
|
2019-01-28 17:54:52 -05:00
|
|
|
recursive?: boolean;
|
2018-09-10 23:40:03 -04: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 23:40:03 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|