deno.land / std@0.91.0 / node / fs.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.import { access, accessSync } from "./_fs/_fs_access.ts";import { appendFile, appendFileSync } from "./_fs/_fs_appendFile.ts";import { chmod, chmodSync } from "./_fs/_fs_chmod.ts";import { chown, chownSync } from "./_fs/_fs_chown.ts";import { close, closeSync } from "./_fs/_fs_close.ts";import * as constants from "./_fs/_fs_constants.ts";import { readFile, readFileSync } from "./_fs/_fs_readFile.ts";import { readlink, readlinkSync } from "./_fs/_fs_readlink.ts";import { exists, existsSync } from "./_fs/_fs_exists.ts";import { mkdir, mkdirSync } from "./_fs/_fs_mkdir.ts";import { mkdtemp, mkdtempSync } from "./_fs/_fs_mkdtemp.ts";import { copyFile, copyFileSync } from "./_fs/_fs_copy.ts";import { writeFile, writeFileSync } from "./_fs/_fs_writeFile.ts";import { readdir, readdirSync } from "./_fs/_fs_readdir.ts";import { realpath, realpathSync } from "./_fs/_fs_realpath.ts";import { rename, renameSync } from "./_fs/_fs_rename.ts";import { rmdir, rmdirSync } from "./_fs/_fs_rmdir.ts";import { unlink, unlinkSync } from "./_fs/_fs_unlink.ts";import { watch } from "./_fs/_fs_watch.ts";import { open, openSync } from "./_fs/_fs_open.ts";import { stat, statSync } from "./_fs/_fs_stat.ts";import { lstat, lstatSync } from "./_fs/_fs_lstat.ts";import { truncate, truncateSync } from "./_fs/_fs_truncate.ts";
import * as promises from "./_fs/promises/mod.ts";
export default { access, accessSync, appendFile, appendFileSync, chmod, chmodSync, chown, chownSync, close, closeSync, constants, copyFile, copyFileSync, exists, existsSync, lstat, lstatSync, mkdir, mkdirSync, mkdtemp, mkdtempSync, open, openSync, promises, readdir, readdirSync, readFile, readFileSync, readlink, readlinkSync, realpath, realpathSync, rename, renameSync, rmdir, rmdirSync, stat, statSync, unlink, unlinkSync, watch, writeFile, writeFileSync, truncate, truncateSync,};
export { access, accessSync, appendFile, appendFileSync, chmod, chmodSync, chown, chownSync, close, closeSync, constants, copyFile, copyFileSync, exists, existsSync, lstat, lstatSync, mkdir, mkdirSync, mkdtemp, mkdtempSync, open, openSync, promises, readdir, readdirSync, readFile, readFileSync, readlink, readlinkSync, realpath, realpathSync, rename, renameSync, rmdir, rmdirSync, stat, statSync, truncate, truncateSync, unlink, unlinkSync, watch, writeFile, writeFileSync,};
std

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉