std::fs::create_dir_all
:
Recursively create a directory and all of its parent components if they are missing.
Examples
use std::fs; fs::create_dir_all("/some/dir")?;
std::fs::create_dir_all
:
Recursively create a directory and all of its parent components if they are missing.
Examples
use std::fs; fs::create_dir_all("/some/dir")?;