mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
15 lines
396 B
Rust
15 lines
396 B
Rust
|
use std::path::Path;
|
||
|
|
||
|
pub fn ensure_directory_exists(file: &Path) -> Result<(), std::io::Error> {
|
||
|
if let Some(path) = file.parent() {
|
||
|
if !path.exists() {
|
||
|
tracing::info!(
|
||
|
"Parent directory does not exist, creating recursively: {}",
|
||
|
file.display()
|
||
|
);
|
||
|
return std::fs::create_dir_all(path);
|
||
|
}
|
||
|
}
|
||
|
Ok(())
|
||
|
}
|