(path: P)
| 95 | /// [`FileType::from_raw_mode`]: crate::fs::FileType::from_raw_mode |
| 96 | #[inline] |
| 97 | pub fn lstat<P: path::Arg>(path: P) -> io::Result<Stat> { |
| 98 | path.into_with_c_str(backend::fs::syscalls::lstat) |
| 99 | } |
| 100 | |
| 101 | /// `readlink(path)`—Reads the contents of a symlink. |
| 102 | /// |