std::filesystem::directory_entry::operator==,!=,<,<=,>,>=,<=>

Compares the path with the directory entry rhs.

# Declarations

bool operator==( const directory_entry& rhs ) const noexcept;

(since C++17)

bool operator!=( const directory_entry& rhs ) const noexcept;

(since C++17) (until C++20)

bool operator<( const directory_entry& rhs ) const noexcept;

(since C++17) (until C++20)

bool operator<=( const directory_entry& rhs ) const noexcept;

(since C++17) (until C++20)

bool operator>( const directory_entry& rhs ) const noexcept;

(since C++17) (until C++20)

bool operator>=( const directory_entry& rhs ) const noexcept;

(since C++17) (until C++20)

std::strong_ordering operator<=>( const directory_entry& rhs ) const noexcept;

(since C++20)

# Parameters

# See also