bool operator==( const directory_entry& rhs ) const noexcept; | (1) | (since C++17) |
bool operator!=( const directory_entry& rhs ) const noexcept; | (2) | (since C++17) |
bool operator<( const directory_entry& rhs ) const noexcept; | (3) | (since C++17) |
bool operator<=( const directory_entry& rhs ) const noexcept; | (4) | (since C++17) |
bool operator>( const directory_entry& rhs ) const noexcept; | (5) | (since C++17) |
bool operator>=( const directory_entry& rhs ) const noexcept; | (6) | (since C++17) |
Compares the path with the directory entry rhs
.
rhs | - | directory_entry to compare |
true
if path() == rhs.path()
, false
otherwise.true
if path() != rhs.path()
, false
otherwise.true
if path() < rhs.path()
, false
otherwise.true
if path() <= rhs.path()
, false
otherwise.true
if path() > rhs.path()
, false
otherwise.true
if path() >= rhs.path()
, false
otherwise. returns the path the entry refers to (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator_cmp