2020-08-28 09:40:22 +00:00
|
|
|
error: calling `std::fs::create_dir` where there may be a better way
|
2020-08-31 13:40:47 +00:00
|
|
|
--> $DIR/create_dir.rs:9:5
|
2020-08-28 09:40:22 +00:00
|
|
|
|
|
|
|
|
LL | std::fs::create_dir("foo");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling `std::fs::create_dir_all` instead: `std::fs::create_dir_all("foo")`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::create-dir` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: calling `std::fs::create_dir` where there may be a better way
|
2020-08-31 13:40:47 +00:00
|
|
|
--> $DIR/create_dir.rs:10:5
|
2020-08-28 09:40:22 +00:00
|
|
|
|
|
|
|
|
LL | std::fs::create_dir("bar").unwrap();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling `std::fs::create_dir_all` instead: `std::fs::create_dir_all("bar")`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|