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, mode: PosixModeBits): void;
Parameters
| Parameter | Type | Description |
|---|---|---|
| path | string | The absolute or relative path to the object that should be updated. |
| mode | PosixModeBits |
Returns:
void