Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

16 lines
558 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#pragma once
#include <filesystem>
namespace FileSystem
{
std::wstring GetRelativePathWithTrailingSeparator(std::wstring from, std::wstring to);
std::wstring GetBasePath(const std::wstring& path);
std::wstring GetFullPath(const std::wstring& path);
std::wstring CreateSubFolder(const std::wstring& parentPath, const std::wstring& subFolderName);
std::wstring CreateTempFolder();
};