create_hard_link 函数

创建 硬链接 到现有文件。

template<class Path1, class Path2>
inline void create_hard_link(
   const Path1& Pval1,
   const Path2& Pval2
);
template<class Path1, class Path2>
inline error_code create_hard_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++ 标准库头文件