std::experimental::filesystem::create_hard_link
来自 cppreference.com
< cpp | experimental | fs
定义在头文件 <experimental/filesystem> 中 |
||
void create_hard_link( const path& target, const path& link ); void create_hard_link( const path& target, const path& link, error_code& ec ); |
(文件系统 TS) | |
创建硬链接 link,其目标设置为 target,就像使用 POSIX link() 一样:路径名 target 必须存在。
创建后,link 和 target 是两个逻辑名称,它们引用同一个文件(它们是 equivalent)。即使原始名称 target 被删除,该文件仍然存在并且可以通过 link 访问。
内容 |
[编辑] 参数
target | - | 要链接到的文件或目录的路径 |
link | - | 新硬链接的路径 |
ec | - | 在非抛出重载中用于错误报告的输出参数 |
[编辑] 返回值
(无)
[编辑] 异常
不带 error_code& 参数的重载在底层操作系统 API 错误上抛出 filesystem_error,并使用 target 作为第一个参数,link 作为第二个参数,以及操作系统错误代码作为错误代码参数进行构造。 std::bad_alloc 可能会在内存分配失败时抛出。带 error_code& 参数的重载如果操作系统 API 调用失败则将其设置为操作系统 API 错误代码,如果未发生错误则执行 ec.clear()。此重载具有noexcept 规范:
noexcept
[编辑] 说明
某些操作系统根本不支持硬链接,或者只支持常规文件。
某些文件系统不支持硬链接,无论操作系统如何:例如,内存卡和闪存驱动器上使用的 FAT 文件系统。
某些文件系统限制每个文件的链接数。
硬链接到目录通常仅限于超级用户。
硬链接通常无法跨越文件系统边界。
特殊路径名点 (".") 是对其父目录的硬链接。特殊路径名点号点 ("..") 是对其父目录的父目录的硬链接。
[编辑] 示例
运行此代码
#include <experimental/filesystem> #include <fstream> #include <iostream> namespace fs = std::experimental::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
[编辑] 参见
创建符号链接 (function) | |
返回引用特定文件的硬链接数 (function) |