(dirfd: Fd, path: P, flags: AtFlags)
| 352 | #[inline] |
| 353 | #[doc(alias = "fstatat")] |
| 354 | pub fn statat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, flags: AtFlags) -> io::Result<Stat> { |
| 355 | path.into_with_c_str(|path| backend::fs::syscalls::statat(dirfd.as_fd(), path, flags)) |
| 356 | } |
| 357 | |
| 358 | /// `faccessat(dirfd, path, access, flags)`—Tests permissions for a file or |
| 359 | /// directory. |