devela::_dep::rustix::fs

Function chownat

pub fn chownat<P, Fd>(
    dirfd: Fd,
    path: P,
    owner: Option<Uid>,
    group: Option<Gid>,
    flags: AtFlags,
) -> Result<(), Errno> 
where P: Arg, Fd: AsFd,
Available on crate feature dep_rustix only.
Expand description

fchownat(dirfd, path, owner, group, flags)—Sets file or directory ownership.

§References