use crate::*; use std::path::Path; mod ls; pub use ls::*; mod cp; pub use cp::*; mod rm; pub use rm::*; mod mkdir; pub use mkdir::*; pub fn append_to_file

(_path: P, _content: &str) -> Result<(), EntryWriteError> where P: AsRef, { unimplemented!() } pub fn write_to_file

(path: P, content: &str) -> Result<(), EntryWriteError> where P: AsRef, { make_parent_directory(&path)?; std::fs::write(&path, content)?; Ok(()) }