(
dirfd: Fd,
path: P,
access: Access,
flags: AtFlags,
)
| 380 | #[inline] |
| 381 | #[doc(alias = "faccessat")] |
| 382 | pub fn accessat<P: path::Arg, Fd: AsFd>( |
| 383 | dirfd: Fd, |
| 384 | path: P, |
| 385 | access: Access, |
| 386 | flags: AtFlags, |
| 387 | ) -> io::Result<()> { |
| 388 | path.into_with_c_str(|path| backend::fs::syscalls::accessat(dirfd.as_fd(), path, access, flags)) |
| 389 | } |
| 390 | |
| 391 | /// `utimensat(dirfd, path, times, flags)`—Sets file or directory timestamps. |
| 392 | /// |