(path: P, owner: Option<Uid>, group: Option<Gid>)
| 300 | #[cfg(not(target_os = "wasi"))] |
| 301 | #[inline] |
| 302 | pub fn chown<P: path::Arg>(path: P, owner: Option<Uid>, group: Option<Gid>) -> io::Result<()> { |
| 303 | path.into_with_c_str(|path| backend::fs::syscalls::chown(path, owner, group)) |
| 304 | } |