| 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 create_symlink(const path& target,const path& link); void create_symlink(const path& target,const path& link, error_code& ec); | (1) | (filesystem TS) |
void create_directory_symlink(const path& target,const path& link); void create_directory_symlink(const path& target,const path& link, error_code& ec); | (2) | (filesystem TS) |
Creates a symbolic linklink with its target set totarget as if by POSIXsymlink(): the pathnametarget may be invalid or non-existing.
Some operating systems require symlink creation to identify that the link is to a directory. Portable code should use(2) to create directory symlinks rather than(1), even though there is no distinction on POSIX systems.
Contents |
| target | - | path to point the symlink to, does not have to exist |
| link | - | path of the new symbolic link |
| ec | - | out-parameter for error reporting in the non-throwing overload |
(none)
Some operating systems do not support symbolic links at all or support them only for regular files.
Some file systems do not support symbolic links regardless of the operating system, for example the FAT system used on some memory cards and flash drives.
Like a hard link, a symbolic link allows a file to have multiple logical names. The presence of a hard link guarantees the existence of a file, even after the original name has been removed. A symbolic link provides no such assurance; in fact, the file named by thetarget argument need not exist when the link is created. A symbolic link can cross file system boundaries.
#include <experimental/filesystem>#include <iostream>namespace fs= std::experimental::filesystem; int main(){ fs::create_directories("sandbox/subdir"); fs::create_symlink("target","sandbox/sym1"); fs::create_directory_symlink("subdir","sandbox/sym2"); for(auto it= fs::directory_iterator("sandbox"); it!= fs::directory_iterator();++it)if(is_symlink(it->symlink_status()))std::cout<<*it<<"->"<< read_symlink(*it)<<'\n'; fs::remove_all("sandbox");}
Possible output:
"sandbox/sym1"->"target""sandbox/sym2"->"subdir"
| determines file attributes determines file attributes, checking the symlink target (function)[edit] | |
| obtains the target of a symbolic link (function)[edit] | |
| creates a hard link (function)[edit] |