A simple library that makes dealing with Rust file system a breeze.
Any one who has done any file system related project in Rust will know that the Rust file system (std::fs) is a bit wonky (so say the least).
Brown library exports struct "Hdir" (Hulk Directory). Once you create this struct it gives you a very simple API for creating managin and manipulating files,folder etc in the current working folder.
## Usage ```rust use brown::Hdir;
fn main(){ let hdir = Hdir::new().unwrap();
} ```
Please note that there is no difference between a "folder" and "directory". The are both same.
The library is not mature by any standards... so try it and let me know.
Incase you have any issues with the library, let me know here https://github.com/skillzaa/brown/issues
My twitter handle is :: rusthulk