operator==(std::filesystem::file_status)
Min standard notice:
Checks if two file_status values are equal, i.e. types and permissions represented by them are same respectively.
# Declarations
friend bool operator==( const file_status& lhs, const file_status& rhs ) noexcept;
(since C++20)
# Parameters
lhs, rhs: file_status values to compare
# Return value
lhs.type() == rhs.type() && lhs.permissions() == rhs.permissions()