Function nc::utime[][src]

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

Change file last access and modification time.

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