RosettaCodeData/Task/Make-directory-path/Rust/make-directory-path.rust

6 lines
96 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use std::fs;
fn main() {
fs::create_dir_all("./path/to/dir").expect("An Error Occured!")
}