std::filesystem::directory_entry::operator= (3) - Linux Manuals
std::filesystem::directory_entry::operator=: std::filesystem::directory_entry::operator=
NAME
std::filesystem::directory_entry::operator= - std::filesystem::directory_entry::operator=
Synopsis
directory_entry& operator=( const directory_entry& other ) = default; (1) (since C++17)
directory_entry& operator=( directory_entry&& other ) noexcept = default; (2) (since C++17)
Replaces the contents of the directory entry (path and cached attributes, if any) with the contents of other.
Both copy- and move-assignment operators for directory_entry are are defaulted.
Parameters
other - other directory_entry
Return value
*this
Example
This section is incomplete
Reason: no example
See also
assign (public member function)