pub trait PathExt {
    // Required method
    fn is_hidden(&self) -> bool;
}
Expand description

SWS Path extensions trait.

Required Methods§

source

fn is_hidden(&self) -> bool

If file path is hidden.

Implementations on Foreign Types§

source§

impl PathExt for Path

source§

fn is_hidden(&self) -> bool

Checks if the current path is hidden (dot file).

Implementors§