devela::_dep::nc

Function fchmodat

pub unsafe fn fchmodat<P>(dirfd: i32, filename: P, mode: u32) -> Result<(), i32> 
where P: AsRef<Path>,
Available on crate feature dep_nc only.
Expand description

Change permissions of a file.

§Examples

let filename = "/tmp/nc-fchmodat";
let fd = unsafe {
    nc::openat(
        nc::AT_FDCWD,
        filename,
        nc::O_CREAT | nc::O_WRONLY,
        0o644
    )
};
assert!(fd.is_ok());
let fd = fd.unwrap();
let ret = unsafe { nc::close(fd) };
assert!(ret.is_ok());
let ret = unsafe { nc::fchmodat(nc::AT_FDCWD, filename, 0o600) };
assert!(ret.is_ok());
let ret = unsafe { nc::unlinkat(nc::AT_FDCWD, filename, 0) };
assert!(ret.is_ok());