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