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