tmp/tmpoibmt944/{from.md → to.md}
RENAMED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
#### Status <a id="fs.op.status">[[fs.op.status]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
file_status status(const path& p);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* As if:
|
| 8 |
|
| 9 |
``` cpp
|
|
@@ -21,11 +21,11 @@ return result;
|
|
| 21 |
[*Note 1*: `result` values of `file_status(file_type::not_found)` and
|
| 22 |
`file_status(file_type::unknown)` are not considered failures and do not
|
| 23 |
cause an exception to be thrown. — *end note*]
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
-
file_status status(const path& p, error_code& ec) noexcept;
|
| 27 |
```
|
| 28 |
|
| 29 |
*Effects:* If possible, determines the attributes of the file `p`
|
| 30 |
resolves to, as if by using POSIX `stat()` to obtain a POSIX
|
| 31 |
`struct stat`. If, during attribute determination, the underlying file
|
|
|
|
| 1 |
#### Status <a id="fs.op.status">[[fs.op.status]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
file_status filesystem::status(const path& p);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* As if:
|
| 8 |
|
| 9 |
``` cpp
|
|
|
|
| 21 |
[*Note 1*: `result` values of `file_status(file_type::not_found)` and
|
| 22 |
`file_status(file_type::unknown)` are not considered failures and do not
|
| 23 |
cause an exception to be thrown. — *end note*]
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
+
file_status filesystem::status(const path& p, error_code& ec) noexcept;
|
| 27 |
```
|
| 28 |
|
| 29 |
*Effects:* If possible, determines the attributes of the file `p`
|
| 30 |
resolves to, as if by using POSIX `stat()` to obtain a POSIX
|
| 31 |
`struct stat`. If, during attribute determination, the underlying file
|