std::filesystem::directory_entry::operator=
Min standard notice:
Replaces the contents of the directory entry (path and cached attributes, if any) with the contents of other.
# Declarations
directory_entry& operator=( const directory_entry& other ) = default;
(since C++17)
directory_entry& operator=( directory_entry&& other ) noexcept = default;
(since C++17)
# Parameters
other: other directory_entry
# Return value
*this
# Example
This section is incompleteReason: no example