void create_directory_symlink(const path& to, const path& new_symlink);
void create_directory_symlink(const path& to, const path& new_symlink,
error_code& ec) noexcept;
Postconditions: new_Βsymlink resolves to a symbolic link file that contains an unspecified representation of to.
Throws: As specified in [fs.err.report].
[βNote: Some operating systems require symlink creation to identify that the link is to a directory. Portable code should use create_Βdirectory_Βsymlink() to create directory symlinks rather than create_Βsymlink() βββend noteβ]