1 2 3 4 5 6
use std::path; pub(crate) fn exists(filepath: &str) -> bool { let file = path::Path::new(filepath); file.exists() }