std::filesystem::directory_entry::hard_link_count
来自 cppreference.com
< cpp | filesystem | directory entry
std::uintmax_t hard_link_count() const; |
(1) | (自 C++17 起) |
std::uintmax_t hard_link_count( std::error_code& ec ) const noexcept; |
(2) | (自 C++17 起) |
如果硬链接数量在此 directory_entry
中缓存,则返回缓存的值。否则,返回
1) std::filesystem::hard_link_count(path()),
2) std::filesystem::hard_link_count(path(), ec).
内容 |
[编辑] 参数
ec | - | 非抛出重载中用于错误报告的输出参数 |
[编辑] 返回值
所引用的文件系统对象的硬链接数量。
[编辑] 异常
任何未标记为 noexcept
的重载可能会在内存分配失败时抛出 std::bad_alloc。
[编辑] 示例
本节尚未完善 原因:没有示例 |
[编辑] 另请参阅
(C++17) |
返回引用特定文件的硬链接数量 (函数) |