pub fn write_file(path: &str, contents: &str) -> bool
Reads data to a file and returns a bool on success
bool
fsutils::write_file("text.txt", "Hello, world!"); assert_eq!(fsutils::read_file("text.txt"), "Hello, world!");