tmp/tmpkxb_c9bm/{from.md → to.md}
RENAMED
|
@@ -3,11 +3,11 @@
|
|
| 3 |
``` cpp
|
| 4 |
bool filesystem::create_directories(const path& p);
|
| 5 |
bool filesystem::create_directories(const path& p, error_code& ec);
|
| 6 |
```
|
| 7 |
|
| 8 |
-
*Effects:* Calls `create_directory
|
| 9 |
not exist.
|
| 10 |
|
| 11 |
*Returns:* `true` if a new directory was created for the directory `p`
|
| 12 |
resolves to, otherwise `false`.
|
| 13 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
bool filesystem::create_directories(const path& p);
|
| 5 |
bool filesystem::create_directories(const path& p, error_code& ec);
|
| 6 |
```
|
| 7 |
|
| 8 |
+
*Effects:* Calls `create_directory` for each element of `p` that does
|
| 9 |
not exist.
|
| 10 |
|
| 11 |
*Returns:* `true` if a new directory was created for the directory `p`
|
| 12 |
resolves to, otherwise `false`.
|
| 13 |
|