6 releases

0.2.4 Mar 20, 2022
0.2.3 Apr 1, 2020
0.2.2 Mar 18, 2020
0.1.0 Mar 13, 2020

#99 in Filesystem

Download history 12100/week @ 2023-12-16 7189/week @ 2023-12-23 10464/week @ 2023-12-30 12982/week @ 2024-01-06 20092/week @ 2024-01-13 16627/week @ 2024-01-20 15340/week @ 2024-01-27 15791/week @ 2024-02-03 16155/week @ 2024-02-10 16403/week @ 2024-02-17 16848/week @ 2024-02-24 16948/week @ 2024-03-02 18865/week @ 2024-03-09 18817/week @ 2024-03-16 18316/week @ 2024-03-23 14022/week @ 2024-03-30

73,047 downloads per month
Used in 56 crates (16 directly)

MIT license

23KB
352 lines

Cargo Documentation CI

faccess

Basic cross-platform file accessibility checks for Rust.

Synopsis

pub trait PathExt {
    fn access(&self, mode: AccessMode) -> std::io::Result<()>;
    fn readable(&self) -> bool;
    fn writable(&self) -> bool;
    fn executable(&self) -> bool;
}

impl PathExt for std::path::Path;

Description

faccess provides an extension trait for std::path::Path which adds an access method for checking the accessibility of a path for the given access permissions — a bitwise-inclusive OR of one or more AccessMode flags (EXISTS, READ, WRITE, EXECUTE).

It also provides convenience methods readable, writable, and executable if only a single permission needs to be checked in a simple boolean fashion.

Example

use std::path::Path;
use faccess::{AccessMode, PathExt};

let path = Path::new("/bin/ls");

assert!(path.access(AccessMode::READ | AccessMode::EXECUTE).is_ok());
assert!(path.readable());
assert!(!path.writable());
assert!(path.executable());

Platform-specific Behaviour

On Unix platforms, access directly maps to faccessat(2), with the AT_EACCESS flag used where available to test against the effective user and group ID's.

On Windows, a complex custom implementation is used to approximate these semantics in a best-effort fashion, using a mixture of file extension checks, simply attempting to open a file, GetNamedSecurityInfoW, and AccessCheck, depending on the permissions being checked. This is similar to implementations found in other languages.

On other platforms it simply proxies to exists() and readonly() as appropriate.

Caveats

There is a history of time-of-check to time-of-use (TOCTOU) bugs with this class of function, particularly with set-user-ID programs relying on them to validate effective user/group permissions prior to accessing files on behalf of other users. They should not be relied upon in a security context.

Dependencies

~58–305KB