命名空间
变体
操作

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) 在底层操作系统 API 错误上抛出 std::filesystem::filesystem_error,使用 target 作为第一个路径参数,link 作为第二个路径参数,以及操作系统错误代码作为错误代码参数构建。
2,4) 如果操作系统 API 调用失败,则将 std::error_code& 参数设置为操作系统 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)
确定文件属性
确定文件属性,检查符号链接目标
(函数) [编辑]
获取符号链接的目标
(函数) [编辑]
创建硬链接
(函数) [编辑]