std::filesystem::equivalent
Min standard notice:
Header: <filesystem>
Checks whether the paths p1 and p2 resolve to the same file system entity.
# Declarations
bool equivalent( const std::filesystem::path& p1,
const std::filesystem::path& p2 );
(since C++17)
bool equivalent( const std::filesystem::path& p1,
const std::filesystem::path& p2,
std::error_code& ec ) noexcept;
(since C++17)
# Parameters
p1, p2: paths to check for equivalenceec: out-parameter for error reporting in the non-throwing overload
# Return value
true if the p1 and p2 refer to the same file or directory and their file status is the same. false otherwise.
# Notes
Two paths are considered to resolve to the same file system entity if the two candidate entities the paths resolve to are located on the same device at the same location. For POSIX, this means that the st_dev and st_ino members of their POSIX stat structure, obtained as if by POSIX stat(), are equal.
In particular, all hard links for the same file or directory are equivalent, and a symlink and its target on the same file system are equivalent.
# Example
#include <cstdint>
#include <filesystem>
#include <iostream>
namespace fs = std::filesystem;
int main()
{
// hard link equivalency
fs::path p1 = ".";
fs::path p2 = fs::current_path();
if (fs::equivalent(p1, p2))
std::cout << p1 << " is equivalent to " << p2 << '\n';
// symlink equivalency
for (const fs::path lib : {"/lib/libc.so.6", "/lib/x86_64-linux-gnu/libc.so.6"})
{
try
{
p2 = lib.parent_path() / fs::read_symlink(lib);
}
catch (std::filesystem::filesystem_error const& ex)
{
std::cout << ex.what() << '\n';
continue;
}
if (fs::equivalent(lib, p2))
std::cout << lib << " is equivalent to " << p2 << '\n';
}
}
# Defect reports
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 2937 | C++17 | error condition specified incorrectly | corrected |