summaryrefslogtreecommitdiff
path: root/std/fs/empty_dir.ts
blob: 81bc45839eef642fabd649bbd5610683a2df70d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
/**
 * Ensures that a directory is empty.
 * Deletes directory contents if the directory is not empty.
 * If the directory does not exist, it is created.
 * The directory itself is not deleted.
 */
export async function emptyDir(dir: string): Promise<void> {
  let items: Deno.FileInfo[] = [];
  try {
    items = await Deno.readDir(dir);
  } catch {
    // if not exist. then create it
    await Deno.mkdir(dir, true);
    return;
  }
  while (items.length) {
    const item = items.shift();
    if (item && item.name) {
      const fn = dir + "/" + item.name;
      await Deno.remove(fn, { recursive: true });
    }
  }
}

/**
 * Ensures that a directory is empty.
 * Deletes directory contents if the directory is not empty.
 * If the directory does not exist, it is created.
 * The directory itself is not deleted.
 */
export function emptyDirSync(dir: string): void {
  let items: Deno.FileInfo[] = [];
  try {
    items = Deno.readDirSync(dir);
  } catch {
    // if not exist. then create it
    Deno.mkdirSync(dir, true);
    return;
  }
  while (items.length) {
    const item = items.shift();
    if (item && item.name) {
      const fn = dir + "/" + item.name;
      Deno.removeSync(fn, { recursive: true });
    }
  }
}