std::filesystem::directory_entry::hard_link_count
Min standard notice:
If the number of hard links is cached in this directory_entry, returns the cached value. Otherwise, returns:
# Declarations
std::uintmax_t hard_link_count() const;
(since C++17)
std::uintmax_t hard_link_count( std::error_code& ec ) const noexcept;
(since C++17)
# Parameters
ec: out-parameter for error reporting in the non-throwing overload
# Return value
The number of hard links for the referred-to filesystem object.
# Example
This section is incompleteReason: no example