Home > @rushstack/node-core-library > FileSystem > changePosixModeBits
FileSystem.changePosixModeBits() method
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;
Parameters
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