use std::fs;fn main() -> std::io::Result<()> { let path = "tmp/data"; fs::create_dir(path)?; print!("successfully created!"); Ok(())}