std::filesystem::directory_entry::operator=

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

# Return value

*this

# Example

This section is incompleteReason: no example

# See also