deno.land / std@0.167.0 / fs / ensure_dir.ts

نووسراو ببینە
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { getFileInfoType } from "./_util.ts";
/** * Ensures that the directory exists. * If the directory structure does not exist, it is created. Like mkdir -p. * Requires the `--allow-read` and `--allow-write` flag. * * @example * ```ts * import { ensureDir } from "https://deno.land/std@$STD_VERSION/fs/mod.ts"; * * ensureDir("./bar"); // returns a promise * ``` */export async function ensureDir(dir: string | URL) { try { const fileInfo = await Deno.lstat(dir); if (!fileInfo.isDirectory) { throw new Error( `Ensure path exists, expected 'dir', got '${ getFileInfoType(fileInfo) }'`, ); } } catch (err) { if (err instanceof Deno.errors.NotFound) { // if dir not exists. then create it. await Deno.mkdir(dir, { recursive: true }); return; } throw err; }}
/** * Ensures that the directory exists. * If the directory structure does not exist, it is created. Like mkdir -p. * Requires the `--allow-read` and `--allow-write` flag. * * @example * ```ts * import { ensureDirSync } from "https://deno.land/std@$STD_VERSION/fs/mod.ts"; * * ensureDirSync("./ensureDirSync"); // void * ``` */export function ensureDirSync(dir: string | URL) { try { const fileInfo = Deno.lstatSync(dir); if (!fileInfo.isDirectory) { throw new Error( `Ensure path exists, expected 'dir', got '${ getFileInfoType(fileInfo) }'`, ); } } catch (err) { if (err instanceof Deno.errors.NotFound) { // if dir not exists. then create it. Deno.mkdirSync(dir, { recursive: true }); return; } throw err; }}
std

Version Info

Tagged at
a year ago