std::filesystem::copy_symlink
Min standard notice:
Header: <filesystem>
Copies a symlink to another location.
# Declarations
void copy_symlink( const std::filesystem::path& from,
const std::filesystem::path& to);
(since C++17)
void copy_symlink( const std::filesystem::path& from,
const std::filesystem::path& to,
std::error_code& ec ) noexcept;
(since C++17)
# Parameters
from: path to a symbolic link to copyto: destination path of the new symlinkec: out-parameter for error reporting in the non-throwing overload
# Return value
(none)
# Example
This section is incompleteReason: no example