命名空间
变体
操作

std::filesystem::create_hard_link

来自 cppreference.com
 
 
 
定义在头文件 <filesystem>
void create_hard_link( const std::filesystem::path& target,
                       const std::filesystem::path& link );
(1) (自 C++17 起)
void create_hard_link( const std::filesystem::path& target,

                       const std::filesystem::path& link,

                       std::error_code& ec ) noexcept;
(2) (自 C++17 起)

创建一个硬链接 link,其目标设置为 target,如同使用 POSIX link() 一样:路径名 target 必须存在。

创建后,linktarget 是两个逻辑名称,它们指向同一个文件(它们是 equivalent)。即使原始名称 target 被删除,该文件仍然存在并且可以通过 link 访问。

内容

[编辑] 参数

target - 要链接到的文件或目录的路径
link - 新硬链接的路径
ec - 非抛出重载中用于错误报告的输出参数

[编辑] 返回值

(无)

[编辑] 异常

任何未标记为 noexcept 的重载都可能在内存分配失败时抛出 std::bad_alloc

1) 在底层 OS API 错误上抛出 std::filesystem::filesystem_error,使用 target 作为第一个路径参数,link 作为第二个路径参数,以及 OS 错误代码作为错误代码参数进行构造。
2) 如果 OS API 调用失败,则将 std::error_code& 参数设置为 OS API 错误代码,如果未发生错误,则执行 ec.clear()

[编辑] 注释

一些操作系统根本不支持硬链接,或者只支持常规文件的硬链接。

一些文件系统无论操作系统如何都不支持硬链接:例如,内存卡和闪存驱动器上使用的 FAT 文件系统。

一些文件系统限制每个文件的链接数量。

硬链接到目录通常仅限于超级用户。

硬链接通常不能跨越文件系统边界。

特殊路径名点 (".") 是对其父目录的硬链接。特殊路径名点-点 ".." 是对其父目录的父目录的硬链接。

[编辑] 示例

#include <filesystem>
#include <fstream>
#include <iostream>
namespace fs = std::filesystem;
 
int main()
{
    fs::create_directories("sandbox/subdir");
    std::ofstream("sandbox/a").put('a'); // create regular file
    fs::create_hard_link("sandbox/a", "sandbox/b");
    fs::remove("sandbox/a");
    // read from the original file via surviving hard link
    char c = std::ifstream("sandbox/b").get();
    std::cout << c << '\n';
    fs::remove_all("sandbox");
}

输出

a

[编辑] 另请参阅

创建符号链接
(函数) [编辑]
返回指向特定文件的硬链接数量
(函数) [编辑]