2019-01-22 04:03:30 +09:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import { sendSync, sendAsync } from "./dispatch_json.ts";
|
|
|
|
import * as dispatch from "./dispatch.ts";
|
2018-09-10 20:40:03 -07:00
|
|
|
|
2019-01-29 06:54:52 +08:00
|
|
|
export interface RemoveOption {
|
|
|
|
recursive?: boolean;
|
2018-09-10 20:40:03 -07:00
|
|
|
}
|
|
|
|
|
2019-01-29 06:54:52 +08:00
|
|
|
/** Removes the named file or directory synchronously. Would throw
|
|
|
|
* 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 20:40:03 -07:00
|
|
|
*
|
2019-02-13 02:08:56 +11:00
|
|
|
* Deno.removeSync("/path/to/dir/or/file", {recursive: false});
|
2018-09-10 20:40:03 -07:00
|
|
|
*/
|
2019-01-29 06:54:52 +08:00
|
|
|
export function removeSync(path: string, options: RemoveOption = {}): void {
|
2019-08-26 16:18:42 +02:00
|
|
|
sendSync(dispatch.OP_REMOVE, { path, recursive: !!options.recursive });
|
2018-09-10 20:40:03 -07:00
|
|
|
}
|
|
|
|
|
2019-01-29 06:54:52 +08:00
|
|
|
/** Removes the named file or directory. Would throw 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 20:40:03 -07:00
|
|
|
*
|
2019-02-13 02:08:56 +11:00
|
|
|
* await Deno.remove("/path/to/dir/or/file", {recursive: false});
|
2018-09-10 20:40:03 -07:00
|
|
|
*/
|
2019-01-29 06:54:52 +08:00
|
|
|
export async function remove(
|
|
|
|
path: string,
|
|
|
|
options: RemoveOption = {}
|
|
|
|
): Promise<void> {
|
2019-08-26 16:18:42 +02:00
|
|
|
await sendAsync(dispatch.OP_REMOVE, { path, recursive: !!options.recursive });
|
2018-09-10 20:40:03 -07:00
|
|
|
}
|