about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/create_dir.stderr
blob: e3ca0e7255c7e6706adbb375d7382ce3ec36bc31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
error: calling `std::fs::create_dir` where there may be a better way
  --> tests/ui/create_dir.rs:10:5
   |
LL |     std::fs::create_dir("foo");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::create-dir` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::create_dir)]`
help: consider calling `std::fs::create_dir_all` instead
   |
LL |     std::fs::create_dir_all("foo");
   |                        ++++

error: calling `std::fs::create_dir` where there may be a better way
  --> tests/ui/create_dir.rs:12:5
   |
LL |     std::fs::create_dir("bar").unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider calling `std::fs::create_dir_all` instead
   |
LL |     std::fs::create_dir_all("bar").unwrap();
   |                        ++++

error: calling `std::fs::create_dir` where there may be a better way
  --> tests/ui/create_dir.rs:23:9
   |
LL |         create_dir("some/dir").unwrap();
   |         ^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider calling `std::fs::create_dir_all` instead
   |
LL |         std::fs::create_dir_all("some/dir").unwrap();
   |         +++++++++          ++++

error: calling `std::fs::create_dir` where there may be a better way
  --> tests/ui/create_dir.rs:29:9
   |
LL |         fs::create_dir("/some/dir").unwrap();
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider calling `std::fs::create_dir_all` instead
   |
LL |         fs::create_dir_all("/some/dir").unwrap();
   |                       ++++

error: calling `std::fs::create_dir` where there may be a better way
  --> tests/ui/create_dir.rs:34:9
   |
LL |         std::fs::create_dir("/some/dir").unwrap();
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider calling `std::fs::create_dir_all` instead
   |
LL |         std::fs::create_dir_all("/some/dir").unwrap();
   |                            ++++

error: aborting due to 5 previous errors