easty file system

```rust

use easy_file::*; fn main() {

// create file and write data match createwritefile!(std::path::Path::new("./demo.txt"),"demo".asbytes()){ Ok(r)=>{ println!("done"); }, Err(_e)=>{} }

// read file return Result, Box> match readfile!("./demo.txt"){ Ok(r)=>{ println!("{:?}",r); }, Err(e)=>{} }

// remove file or folder match remove!("./test.txt"){ Ok(r)=>{ println!("done"); }, Err(e)=>{} }

// list directory return Vec match listdir!("./"){ Ok(r)=>{ println!("{:?}",r); }, Err(_e)=>{} }

//append data to file match appendtofile!("./foo.txt", "demo".asbytes()) { Ok(r) => { println!("done"); } Err(_e) => {} }

//read text file return String if let Ok(r) = readto_string!("./foo.txt") { println!("{}", _r); }

// copy file from a path to another path if let Ok(r) = copyto_path!("./src/foo.txt", "./demo.txt") {}

// move file from a path to another path if let Ok(r) = moveto_path!("./src/foo.txt", "./demo.txt") {}

// Creates a new, empty directory at the provided path if let Ok(r) = createdir!("./demo") {}

// Recursively create a directory and all of its parent components if they are missing. if let Ok(r) = createdir_all!("./rust/js") {}

}

```