1//! Utilities to help working with the file-system. 2#[macro_use] 3extern crate quick_error; 4 5pub mod check; 6pub mod copy; 7pub mod read; 8pub mod remove;