Function nc::lstat

source ·
pub unsafe fn lstat<P: AsRef<Path>>(
    filename: P,
    statbuf: &mut stat_t
) -> Result<(), Errno>
Expand description

Get file status about a file, without following symbolic.

§Example

let path = "/etc/passwd";
let mut stat = nc::stat_t::default();
let ret = unsafe { nc::lstat(path, &mut stat) };
assert!(ret.is_ok());
// Check fd is a regular file.
assert_eq!((stat.st_mode & nc::S_IFMT), nc::S_IFREG);