std::filesystem::create_symlink, std::filesystem::create_directory_symlink

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

                     const std::filesystem::path& link,

                     std::error_code& ec ) noexcept;
(2) (C++17 起)
void create_directory_symlink( const std::filesystem::path& target,
                               const std::filesystem::path& link );
(3) (C++17 起)
void create_directory_symlink( const std::filesystem::path& target,

                               const std::filesystem::path& link,

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

创建符号链接 link,其目标设为 target,如同用 POSIX symlink():路径名 target 可以非法或不存在。

一些操作系统要求符号链接的创建鉴别该链接是否到目录。可移植的代码应用 (3,4) 创建目录符号链接,而非 (1,2),即使 POSIX 系统不作区别。

参数

target - 指定符号链接所至的路径,不必存在
link - 新符号链接的路径
ec - 不抛出重载中报告错误的输出形参

返回值

(无)

异常

若内存分配失败,则任何不标记为 noexcept 的重载可能抛出 std::bad_alloc

1,3) 抛出 std::filesystem::filesystem_error,构造时以 target 为第一路径实参,以 link 为第二路径实参,并以OS 错误码为错误码实参。

若 OS API 调用失败,则 @2,4@ 设置 std::error_code& 形参

为 OS API 错误码,而未发生错误时则执行 ec.clear()

注解

一些操作系统完全不支持符号链接,或仅对常规文件支持。

某些文件系统不支持符号链接,无关乎操作系统,例如用于某些内存卡和闪存驱动器的 FAT 系统。

类似硬链接,符号链接允许一个文件拥有多个逻辑名。硬链接的存在保证文件的存在,即使原始文件名被移除。符号链接无这种保障;实际上,target 参数所指名的文件不必在链接创建时存在。符号链接能跨越文件系统边界。

示例

#include <cassert>
#include <filesystem>
#include <iostream>
namespace fs = std::filesystem;
 
int main()
{
    fs::create_directories("sandbox/subdir");
    fs::create_symlink("target", "sandbox/sym1");
    fs::create_directory_symlink("subdir", "sandbox/sym2");
 
    for (auto it = fs::directory_iterator("sandbox"); it != fs::directory_iterator(); ++it)
        if (is_symlink(it->symlink_status()))
            std::cout << *it << "->" << read_symlink(*it) << '\n';
 
    assert(std::filesystem::equivalent("sandbox/sym2", "sandbox/subdir"));
    fs::remove_all("sandbox");
}

可能的输出:

"sandbox/sym1"->"target"
"sandbox/sym2"->"subdir"

参阅

(C++17)(C++17)
确定文件属性
确定文件属性,检查符号链接目标
(函数)
获得符号链接的目标
(函数)
创建一个硬链接
(函数)