std::experimental::filesystem::is_other
来自 cppreference.com
< cpp | experimental | fs
定义在头文件 <experimental/filesystem> 中 |
||
bool is_other( file_status s ); |
(1) | (文件系统 TS) |
bool is_other( const path& p ); |
(2) | (文件系统 TS) |
bool is_other( const path& p, error_code& ec ); |
(3) | (文件系统 TS) |
检查给定的文件状态或路径是否对应于其他类型的文件。也就是说,文件存在,但既不是普通文件,也不是目录,也不是符号链接。
1) 等效于 exists(s) && !is_regular_file(s) && !is_directory(s) && !is_symlink(s).
2) 等效于 is_other(status(p)).
3) 等效于 is_other(status(p, ec)). 如果发生错误,则返回 false 并将 ec 设置为适当的错误代码。否则, ec 将通过调用 ec.clear() 清除。
内容 |
[编辑] 参数
s | - | 要检查的文件状态 |
p | - | 要检查的路径 |
ec | - | 用于存储错误状态的错误代码 |
[编辑] 返回值
如果给定的路径或文件状态对应于其他文件,则返回 true,否则返回 false。
[编辑] 异常
1,3)
noexcept 规范:
noexcept
2) 如果发生错误,则抛出 filesystem_error。错误是用 p 作为参数构造的。错误代码被设置为导致失败的错误的适当错误代码。
[编辑] 参见
本节尚未完善 |