From 124eaa50e0a34f5f89572c1aa812c50979da58fc Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 20 Jul 2021 18:15:48 +0100 Subject: libstdc++: Fix create_directories to resolve symlinks [PR101510] When filesystem__create_directories checks to see if the path already exists and resovles to a directory, it uses filesystem::symlink_status, which means it reports an error if the path is a symlink. It should use filesystem::status, so that the target directory is detected, and no error is reported. Signed-off-by: Jonathan Wakely libstdc++-v3/ChangeLog: PR libstdc++/101510 * src/c++17/fs_ops.cc (fs::create_directories): Use status instead of symlink_status. * src/filesystem/ops.cc (fs::create_directories): Likewise. * testsuite/27_io/filesystem/operations/create_directories.cc: * testsuite/27_io/filesystem/operations/create_directory.cc: Do not test with symlinks on Windows. * testsuite/experimental/filesystem/operations/create_directories.cc: * testsuite/experimental/filesystem/operations/create_directory.cc: Do not test with symlinks on Windows. --- libstdc++-v3/src/filesystem/ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libstdc++-v3/src/filesystem/ops.cc') diff --git a/libstdc++-v3/src/filesystem/ops.cc b/libstdc++-v3/src/filesystem/ops.cc index c400376..7c5b164 100644 --- a/libstdc++-v3/src/filesystem/ops.cc +++ b/libstdc++-v3/src/filesystem/ops.cc @@ -426,7 +426,7 @@ fs::create_directories(const path& p, error_code& ec) noexcept return false; } - file_status st = symlink_status(p, ec); + file_status st = status(p, ec); if (is_directory(st)) return false; else if (ec && !status_known(st)) -- cgit v1.1