std::experimental::filesystem::copy_symlink
Min standard notice:
Header: <experimental/filesystem>
Copies a symlink to another location.
# Declarations
void copy_symlink( const path& from, const path& to );
(filesystem TS)
void copy_symlink( const path& from, const path& to,
error_code& ec );
(filesystem TS)
# 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)