mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-01 10:52:26 +00:00
13 lines
336 B
C++
13 lines
336 B
C++
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <filesystem>
|
||
|
|
namespace Common::FS {
|
||
|
|
|
||
|
|
bool CreateSymlink(const std::filesystem::path &from, const std::filesystem::path &to);
|
||
|
|
bool IsSymlink(const std::filesystem::path &path);
|
||
|
|
|
||
|
|
} // namespace Common::FS
|