std::filesystem::file_status::type
来自 cppreference.com
< cpp | filesystem | file status
std::filesystem::file_type type() const noexcept; |
(1) | (自 C++17 起) |
void type( std::filesystem::file_type type ) noexcept; |
(2) | (自 C++17 起) |
访问文件类型信息。
1) 返回文件类型信息。
2) 将文件类型设置为
type
。[编辑] 参数
type | - | 要设置为的文件类型 |
[编辑] 返回值
1) 文件类型信息。
2) (无)
[编辑] 示例
此部分不完整 原因:无示例 |