```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
// remove file or folder match remove!("./test.txt"){ Ok(r)=>{ println!("done"); }, Err(e)=>{} }
// list directory return Vec
//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") {}
}
```