macro_rules! create_dir_all {
    ($folder_name:expr) => { ... };
}
Expand description

Recursively create a directory and all of its parent components if they are missing.

 if let Ok(_r) = create_dir_all!("./rust/js") {}