-
Notifications
You must be signed in to change notification settings - Fork 4
/
access.ts
39 lines (35 loc) · 867 Bytes
/
access.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
// re-export existsSync?
import { accessSync, constants } from 'node:fs';
import type { PathLike } from 'node:fs';
/**
* Does the current process have {@link mode} access?
* By default, checks if the path is visible to the proccess.
*
* @param mode A `fs.constants` value; default `F_OK`
*/
export function ok(path: PathLike, mode?: number): boolean {
try {
accessSync(path, mode);
return true;
} catch {
return false;
}
}
/**
* Can the current process write to this path?
*/
export function writable(path: PathLike): boolean {
return ok(path, constants.W_OK);
}
/**
* Can the current process read this path?
*/
export function readable(path: PathLike): boolean {
return ok(path, constants.R_OK);
}
/**
* Can the current process execute this path?
*/
export function executable(path: PathLike): boolean {
return ok(path, constants.X_OK);
}