| Technical Specification | ||||
| Filesystem library(filesystem TS) | ||||
| Library fundamentals(library fundamentals TS) | ||||
| Library fundamentals 2(library fundamentals TS v2) | ||||
| Library fundamentals 3(library fundamentals TS v3) | ||||
| Extensions for parallelism(parallelism TS) | ||||
| Extensions for parallelism 2(parallelism TS v2) | ||||
| Extensions for concurrency(concurrency TS) | ||||
| Extensions for concurrency 2(concurrency TS v2) | ||||
| Concepts(concepts TS) | ||||
| Ranges(ranges TS) | ||||
| Reflection(reflection TS) | ||||
| Mathematical special functions(special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
| Classes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Functions | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| File types | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <experimental/filesystem> | ||
void copy_symlink(const path& from,const path& to); | (1) | (filesystem TS) |
void copy_symlink(const path& from,const path& to, error_code& ec); | (2) | (filesystem TS) |
Copies a symlink to another location.
f iscreate_symlink() orcreate_directory_symlink depending on whetherfrom resolves to a file or directory.f iscreate_symlink() orcreate_directory_symlink depending on whetherfrom resolves to a file or directory.Contents |
| from | - | path to a symbolic link to copy |
| to | - | destination path of the new symlink |
| ec | - | out-parameter for error reporting in the non-throwing overload |
(none)
| copies files or directories (function)[edit] | |
| copies file contents (function)[edit] | |
| creates a symbolic link (function)[edit] | |
| obtains the target of a symbolic link (function)[edit] |