devela::_dep::nc::call

Function utime

pub unsafe fn utime<P>(filename: P, times: &utimbuf_t) -> Result<(), i32> 
where P: AsRef<Path>,
Available on crate feature dep_nc only.
Expand description

Change file last access and modification time.

§Examples

let path = "/tmp/nc-utime";
let ret = unsafe { nc::openat(nc::AT_FDCWD, path, nc::O_WRONLY | nc::O_CREAT, 0o644) };
assert!(ret.is_ok());
let fd = ret.unwrap();
let ret = unsafe { nc::close(fd) };
assert!(ret.is_ok());
let time = nc::utimbuf_t {
    actime: 100,
    modtime: 10,
};
let ret = unsafe { nc::utime(path, &time) };
assert!(ret.is_ok());
let ret = unsafe { nc::unlinkat(nc::AT_FDCWD, path, 0) };
assert!(ret.is_ok());