Archived
1
0
This repository has been archived on 2024-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2024-09-24 14:54:57 +02:00

449 B
Vendored

Changes the file system permissions of a file.

ok, err = os.chmod(path, mask)

Parameters

path is the path to the file on which the permissions should be changed.

mask is a string specifying the new permission mask. Currently, only octal number notations is supported, e.g. "755".

Return Value

If successful, returns true. On error, returns nil and an error message.

Availability

Premake 5.0 or later.