名前空間
変種
操作

std::filesystem::file_status::operator=

提供: cppreference.com
 
 
 
 
file_status& operator=( const file_status& other ) noexcept = default;
(1) (C++17以上)
file_status& operator=( file_status&& other ) noexcept = default;
(2) (C++17以上)

別のファイルステータスオブジェクトをコピー代入またはムーブ代入します。

[編集] 引数

other - 代入する別のファイルステータスオブジェクト

[編集] 戻り値

*this

[編集]