(path: P, access: Access)
| 242 | #[cfg(not(any(target_os = "espidf", target_os = "horizon", target_os = "vita")))] |
| 243 | #[inline] |
| 244 | pub fn access<P: path::Arg>(path: P, access: Access) -> io::Result<()> { |
| 245 | path.into_with_c_str(|path| backend::fs::syscalls::access(path, access)) |
| 246 | } |
| 247 | |
| 248 | /// `statfs`—Queries filesystem metadata. |
| 249 | /// |