|
|
@ -15,7 +15,7 @@ pub fn create_file(path: &str) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn append_file(path: &str, content: &str) -> std::io::Result<()> {
|
|
|
|
pub fn append_file(path: &str, content: &str) -> std::io::Result<()> {
|
|
|
|
log(format!("Appending {} to file {}", content.replace("\n", ""), path));
|
|
|
|
log(format!("[ \x1b[2;1;32mOK\x1b[0m ] Append '{}' to file {}", content.replace("\n", ""), path));
|
|
|
|
let mut file = OpenOptions::new().append(true).open(path)?;
|
|
|
|
let mut file = OpenOptions::new().append(true).open(path)?;
|
|
|
|
file.write_all(content.as_bytes())?;
|
|
|
|
file.write_all(content.as_bytes())?;
|
|
|
|
Ok(())
|
|
|
|
Ok(())
|
|
|
|