create_symlink 函数

创建 符号链接 到现有文件。

template<class Path1, class Path2>
inline void create_sym_link(
   const Path1& Pval1,
   const Path2& Pval2
);
template<class Path1, class Path2>
inline error_code create_sym_link(
   const Path1& Pval1,
   const Path2& Pval2,
   error_code& Code
);

参数

  • Pval1
    表示现有文件的文件名的 Path 对象。 Path 可以是 basic_path 或从 basic_path 派生的类型。

  • Pval2
    包含符号链接的文件名的 Path 对象。

  • Code
    一个 error_code 对象。

返回值

第二个函数返回 Code。

备注

符号链接 是为其他文件系统对象的点的文件系统对象。

如果符号链接无法创建,第一个函数引发。basic_filesystem_error

第二个函数分配到 Code 与操作的所有错误代码。

要求

标头: filesystem

命名空间: std::tr2::sys

请参见

参考

<filesystem>

其他资源

C++ 标准库头文件