From Jason Turner

[fs.op.create.symlink]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpe0srpdq7/{from.md → to.md} +20 -0
tmp/tmpe0srpdq7/{from.md → to.md} RENAMED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Create symlink <a id="fs.op.create.symlink">[[fs.op.create.symlink]]</a>
2
+
3
+ ``` cpp
4
+ void create_symlink(const path& to, const path& new_symlink);
5
+ void create_symlink(const path& to, const path& new_symlink,
6
+ error_code& ec) noexcept;
7
+ ```
8
+
9
+ *Effects:* Establishes the postcondition, as if by POSIX `symlink()`.
10
+
11
+ *Ensures:* `new_symlink` resolves to a symbolic link file that contains
12
+ an unspecified representation of `to`.
13
+
14
+ *Throws:* As specified in  [[fs.err.report]].
15
+
16
+ [*Note 1*: Some operating systems do not support symbolic links at all
17
+ or support them only for regular files. Some file systems (such as the
18
+ FAT file system) do not support symbolic links regardless of the
19
+ operating system. — *end note*]
20
+