std::filesystem::file_status::type
提供: cppreference.com
<tbody>
</tbody>
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) (なし)
例
| This section is incomplete Reason: no example |