forked from marktext/marktext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
120 lines (111 loc) · 2.49 KB
/
index.js
File metadata and controls
120 lines (111 loc) · 2.49 KB
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
import fs from 'fs-extra'
import fsPromises from 'fs/promises'
import path from 'path'
/**
* Test whether or not the given path exists.
*
* @param {string} p The path to the file or directory.
* @returns {boolean}
*/
export const exists = async p => {
try {
await fsPromises.access(p)
return true
} catch (_) {
return false
}
}
/**
* Ensure that a directory exist.
*
* @param {string} dirPath The directory path.
*/
export const ensureDirSync = dirPath => {
try {
fs.ensureDirSync(dirPath)
} catch (e) {
if (e.code !== 'EEXIST') {
throw e
}
}
}
/**
* Returns true if the path is a directory with read access.
*
* @param {string} dirPath The directory path.
*/
export const isDirectory = dirPath => {
try {
return fs.existsSync(dirPath) && fs.lstatSync(dirPath).isDirectory()
} catch (_) {
return false
}
}
/**
* Returns true if the path is a directory or a symbolic link to a directory with read access.
*
* @param {string} dirPath The directory path.
*/
export const isDirectory2 = dirPath => {
try {
if (!fs.existsSync(dirPath)) {
return false
}
const fi = fs.lstatSync(dirPath)
if (fi.isDirectory()) {
return true
} else if (fi.isSymbolicLink()) {
const targetPath = path.resolve(path.dirname(dirPath), fs.readlinkSync(dirPath))
return isDirectory(targetPath)
}
return false
} catch (_) {
return false
}
}
/**
* Returns true if the path is a file with read access.
*
* @param {string} filepath The file path.
*/
export const isFile = filepath => {
try {
return fs.existsSync(filepath) && fs.lstatSync(filepath).isFile()
} catch (_) {
return false
}
}
/**
* Returns true if the path is a file or a symbolic link to a file with read access.
*
* @param {string} filepath The file path.
*/
export const isFile2 = filepath => {
try {
if (!fs.existsSync(filepath)) {
return false
}
const fi = fs.lstatSync(filepath)
if (fi.isFile()) {
return true
} else if (fi.isSymbolicLink()) {
const targetPath = path.resolve(path.dirname(filepath), fs.readlinkSync(filepath))
return isFile(targetPath)
}
return false
} catch (_) {
return false
}
}
/**
* Returns true if the path is a symbolic link with read access.
*
* @param {string} filepath The link path.
*/
export const isSymbolicLink = filepath => {
try {
return fs.existsSync(filepath) && fs.lstatSync(filepath).isSymbolicLink()
} catch (_) {
return false
}
}