mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
0b2497f16e
* fix: update codebase to work with Deno RC * work * fix * fix * fix * fixes * work * update * fixes * fix * revert
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { join } from "@std/path/join";
|
|
import { toPathString } from "./_to_path_string.ts";
|
|
|
|
/**
|
|
* Asynchronously ensures that a directory is empty.
|
|
*
|
|
* If the directory does not exist, it is created. The directory itself is not
|
|
* deleted.
|
|
*
|
|
* Requires `--allow-read` and `--allow-write` permissions.
|
|
*
|
|
* @see {@link https://docs.deno.com/runtime/manual/basics/permissions#file-system-access}
|
|
* for more information on Deno's permissions system.
|
|
*
|
|
* @param dir The path of the directory to empty, as a string or URL.
|
|
*
|
|
* @returns A void promise that resolves once the directory is empty.
|
|
*
|
|
* @example Usage
|
|
* ```ts ignore
|
|
* import { emptyDir } from "@std/fs/empty-dir";
|
|
*
|
|
* await emptyDir("./foo");
|
|
* ```
|
|
*/
|
|
export async function emptyDir(dir: string | URL) {
|
|
try {
|
|
const items = await Array.fromAsync(Deno.readDir(dir));
|
|
|
|
await Promise.all(items.map((item) => {
|
|
if (item && item.name) {
|
|
const filepath = join(toPathString(dir), item.name);
|
|
return Deno.remove(filepath, { recursive: true });
|
|
}
|
|
}));
|
|
} catch (err) {
|
|
if (!(err instanceof Deno.errors.NotFound)) {
|
|
throw err;
|
|
}
|
|
|
|
// if not exist. then create it
|
|
await Deno.mkdir(dir, { recursive: true });
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Synchronously ensures that a directory is empty deletes the directory
|
|
* contents it is not empty.
|
|
*
|
|
* If the directory does not exist, it is created. The directory itself is not
|
|
* deleted.
|
|
*
|
|
* Requires `--allow-read` and `--allow-write` permissions.
|
|
*
|
|
* @see {@link https://docs.deno.com/runtime/manual/basics/permissions#file-system-access}
|
|
* for more information on Deno's permissions system.
|
|
*
|
|
* @param dir The path of the directory to empty, as a string or URL.
|
|
*
|
|
* @returns A void value that returns once the directory is empty.
|
|
*
|
|
* @example Usage
|
|
* ```ts ignore
|
|
* import { emptyDirSync } from "@std/fs/empty-dir";
|
|
*
|
|
* emptyDirSync("./foo");
|
|
* ```
|
|
*/
|
|
export function emptyDirSync(dir: string | URL) {
|
|
try {
|
|
const items = [...Deno.readDirSync(dir)];
|
|
|
|
// If the directory exists, remove all entries inside it.
|
|
while (items.length) {
|
|
const item = items.shift();
|
|
if (item && item.name) {
|
|
const filepath = join(toPathString(dir), item.name);
|
|
Deno.removeSync(filepath, { recursive: true });
|
|
}
|
|
}
|
|
} catch (err) {
|
|
if (!(err instanceof Deno.errors.NotFound)) {
|
|
throw err;
|
|
}
|
|
// if not exist. then create it
|
|
Deno.mkdirSync(dir, { recursive: true });
|
|
}
|
|
}
|