2019-01-21 14:03:30 -05: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 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
|
|
|
}
|
|
|
|
|
2019-01-28 17:54:52 -05: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 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 {
|
2019-08-26 10:18:42 -04:00
|
|
|
sendSync(dispatch.OP_REMOVE, { path, recursive: !!options.recursive });
|
2018-09-10 23:40:03 -04:00
|
|
|
}
|
|
|
|
|
2019-01-28 17:54:52 -05: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 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> {
|
2019-08-26 10:18:42 -04:00
|
|
|
await sendAsync(dispatch.OP_REMOVE, { path, recursive: !!options.recursive });
|
2018-09-10 23:40:03 -04:00
|
|
|
}
|