Files
songparser/src/util.rs
2025-06-28 17:00:39 -04:00

7 lines
167 B
Rust

pub fn path_buf_to_string(path: &std::path::Path) -> String {
match path.to_str() {
Some(val) => String::from(val),
None => String::new(),
}
}