pbf-craft 1.0.2

A Rust library for reading and writing OpenSteetMap PBF file format.
Documentation
1
2
3
4
5
6
use std::path;

pub(crate) fn exists(filepath: &str) -> bool {
    let file = path::Path::new(filepath);
    file.exists()
}