pub fn append_string_to_file(path: &str, data: &str) -> bool
Appends a string to a file.
path
data
let success = cgl_rs::utils::append_string_to_file("log.txt", "Hello, world!");