| hide_title | true |
|---|---|
| custom_edit_url | |
| pagination_prev | |
| pagination_next |
Home > @rushstack/node-core-library > FileSystem > changePosixModeBits
Changes the permissions (i.e. file mode bits) for a filesystem object. Behind the scenes it uses fs.chmodSync()<></>.
Signature:
static changePosixModeBits(path: string, modeBits: PosixModeBits): void;|
Parameter |
Type |
Description |
|---|---|---|
|
path |
string |
The absolute or relative path to the object that should be updated. |
|
modeBits |
POSIX-style file mode bits specified using the PosixModeBits enum |
Returns:
void