Skip to main content
method promises.FileHandle.chmod
FileHandle.chmod(mode: Mode): Promise<void>
Deprecated

Modifies the permissions on the file. See chmod(2).

Parameters

mode: Mode

the file mode bit mask.

Return Type

Promise<void>

Fulfills with undefined upon success.

Back to top