use std::{fs, io, path::Path};
use fs_lock::FileLock;
pub(crate) fn create_if_not_exist(path: &Path) -> io::Result<FileLock> {
fs::File::options()
.read(true)
.write(true)
.create(true)
.truncate(false)
.open(path)
.and_then(FileLock::new_exclusive)
.map(|file_lock| file_lock.set_file_path(path))
}