std::filesystem::copy_symlink

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

# Return value

(none)

# Example

This section is incompleteReason: no example

# See also