simple-fs 0.1.3

Simple and convenient API for File System access
Documentation
// region:    --- Modules

mod dir;
mod error;
mod file;
mod glob;
mod iter_files;
mod sfile;
mod spath;
mod watch;

#[cfg(feature = "bin-nums")]
mod bin_nums;
#[cfg(feature = "with-json")]
mod with_json;
#[cfg(feature = "with-toml")]
mod with_toml;

pub use self::error::{Error, Result};

// -- re-export all for root crate

pub use dir::*;
pub use file::*;
pub use glob::*;
pub use iter_files::*;
pub use sfile::*;
pub use spath::*;
pub use watch::*;

#[cfg(feature = "with-json")]
pub use with_json::*;

#[cfg(feature = "with-toml")]
pub use with_toml::*;

#[cfg(feature = "bin-nums")]
pub use bin_nums::*;

// endregion: --- Modules