Skip to main content
function chown
chown(
path: PathLike,
uid: number,
gid: number,
): Promise<void>
Deprecated

Changes the ownership of a file.

Parameters

path: PathLike
uid: number
gid: number

Return Type

Promise<void>

Fulfills with undefined upon success.

Back to top