5 lines
96 B
Rust
5 lines
96 B
Rust
use std::fs;
|
|
|
|
fn main() {
|
|
fs::create_dir_all("./path/to/dir").expect("An Error Occured!")
|
|
}
|