tmp/tmpsvk4y0il/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Is other <a id="fs.op.is.other">[[fs.op.is.other]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
bool is_other(file_status s) noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Returns:*
|
| 8 |
+
`exists(s) && !is_regular_file(s) && !is_directory(s) && !is_symlink(s)`.
|
| 9 |
+
|
| 10 |
+
``` cpp
|
| 11 |
+
bool is_other(const path& p);
|
| 12 |
+
bool is_other(const path& p, error_code& ec) noexcept;
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
*Returns:* `is_other(status(p))` or `is_other(status(p, ec))`,
|
| 16 |
+
respectively. The signature with argument `ec` returns `false` if an
|
| 17 |
+
error occurs.
|
| 18 |
+
|
| 19 |
+
*Throws:* As specified in [[fs.err.report]].
|
| 20 |
+
|