Rust

Rust

Made by DeepSource

Usage of fs::create_dir RS-W1032

Bug risk
Minor

fs::create_dir_all is preferable over fs::create_dir as it creates all missing components in the provided path without erroring out.

Bad practice

fs::create_dir("/some/path");

Recommended

fs::create_dir_all("/some/path");