std::experimental::filesystem::file_status::file_status
来自 cppreference.cn
< cpp | experimental | fs | 文件状态 (file status)
file_status( const file_status& ) = default; |
(1) | (filesystem TS) |
file_status( file_status&& ) = default; |
(2) | (filesystem TS) |
explicit file_status( file_type type = file_type::none, perms permissions = perms::unknown ); |
(3) | (filesystem TS) |
构造一个新的 file_status
对象。
1) 默认复制构造函数。
2) 默认移动构造函数。
3) 使用 type 作为类型,permissions 作为权限初始化文件状态对象。
[编辑] 参数
本节不完整 |
[编辑] 异常
noexcept 规范:
noexcept