blob: 037e6ff173ac098bc3499eb7b50db1582db08a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
error: calling `std::fs::create_dir` where there may be a better way
--> $DIR/create_dir.rs:10:5
|
LL | std::fs::create_dir("foo");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling `std::fs::create_dir_all` instead: `create_dir_all("foo")`
|
= note: `-D clippy::create-dir` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::create_dir)]`
error: calling `std::fs::create_dir` where there may be a better way
--> $DIR/create_dir.rs:11:5
|
LL | std::fs::create_dir("bar").unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling `std::fs::create_dir_all` instead: `create_dir_all("bar")`
error: aborting due to 2 previous errors
|