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