makeclean 1.3.0

Clean up projects you're no longer working on.
Documentation
1
2
3
4
5
use std::path::Path;

pub fn canonicalized_str(path: impl AsRef<Path>) -> String {
    path.as_ref().canonicalize().unwrap().display().to_string()
}