Also known as "fchownat".
pub fn setFileOwner(
dir: Dir,
io: Io,
sub_path: []const u8,
owner: ?File.Uid,
group: ?File.Gid,
options: SetFileOwnerOptions,
) SetFileOwnerError!void
pub fn setFileOwner(
dir: Dir,
io: Io,
sub_path: []const u8,
owner: ?File.Uid,
group: ?File.Gid,
options: SetFileOwnerOptions,
) SetFileOwnerError!void {
return io.vtable.dirSetFileOwner(io.userdata, dir, sub_path, owner, group, options);
}