pub fn get_file_size(path: &str) -> usize
Returns the size of a file in bytes.
path
let path = "path/to/file"; let size = cgl_rs::utils::get_file_size(path);