From Jason Turner

[fs.op.create_symlink]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp7l61zakk/{from.md → to.md} +20 -0
tmp/tmp7l61zakk/{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
+ *Postconditions:* `new_symlink` resolves to a symbolic link file that
12
+ contains 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
+