Function nc::utime

source ·
pub unsafe fn utime<P: AsRef<Path>>(
    filename: P,
    times: &utimbuf_t
) -> Result<(), Errno>
Expand description

Change file last access and modification time.

§Example

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());