Create A Directory In Rust (Recursively)
June 2023
This is the basic function I use to make directories in Rust. It's like running mkdir -p /some/path on the command line.
use PathBuf;
Output:
Directory was made or already exists
end of line