Files
eden/src/common/fs/symlink.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
322 B
C++
Raw Normal View History

2025-10-28 03:46:47 +01:00
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <filesystem>
namespace Common::FS {
bool CreateSymlink(std::filesystem::path from, std::filesystem::path to);
2025-10-28 03:46:47 +01:00
bool IsSymlink(const std::filesystem::path &path);
} // namespace Common::FS