thin-provisioning-tools/src/file_utils.rs

9 lines
151 B
Rust
Raw Normal View History

2020-06-09 19:29:13 +05:30
use std::fs;
pub fn file_exists(path: &str) -> bool {
return match fs::metadata(path) {
Ok(_) => {true}
Err(_) => {false}
}
}