Brown

A simple library that makes dealing with Rust file system a breeze.


Please wait till version 1.0 for use in production 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 helpful functions which gives you a very simple API for creating managin and manipulating files,folder etc in the current working folder.


## Example

```rust use brown;

pub fn main(){ // create a folder (parent folder) for rest of the tests let pdir = brown::createdir("parent"); assert!(pdir.isok());

// create file safely let mdfile = brown::createfile("parent/mdfile.md"); assert!(mdfile.is_ok());

// Will over write a file even if exists already. let htmlfile = brown::createfilebrute("parent/htmlfile.html"); assert!(htmlfile.isok());

// create a folder inside previously created parent folder let testfolder = brown::createdir("parent/testfolder"); assert!(testfolder.is_ok());

// This will just get the files from the given folder root.It returns a Vec of DirEntry objects (std::fs::DirEntry). Many fn in this lib consume DirEntry object.
let allfiles = brown::getfiles("parent"); assert!(allfiles.isok());

// This will just get the folders from the given folder root. let alldirs = brown::getdirs("parent"); assert!(alldirs.isok());

// This will just get the files with .md extention from the given folder root. let allmdfiles = brown::getfilesbyext("parent","md"); assert!(allmdfiles.isok()); // This will get all entries from a folder let allentries = brown::getentries("parent"); assert!(allentries.isok());

}

```

Please note that there is no difference between a "folder" and "directory" in the documentation. The are both same. Do not add the ./ anywhere in the paths, this will be added automatically. There are no relative paths used.

Incase you have any issues with the library, let me know here https://github.com/skillzaa/brown/issues

Please be in touch

My twitter handle is :: @rusthulk