2022-07-02 22:02:29 +00:00
|
|
|
#ifndef COMPONENTS_FILES_CONVERSION_HPP
|
|
|
|
#define COMPONENTS_FILES_CONVERSION_HPP
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
namespace Files
|
|
|
|
{
|
2022-07-02 22:02:29 +00:00
|
|
|
std::string pathToUnicodeString(const std::filesystem::path& path);
|
|
|
|
|
|
|
|
std::string pathToUnicodeString(std::filesystem::path&& path);
|
|
|
|
|
|
|
|
std::filesystem::path pathFromUnicodeString(std::string_view path);
|
|
|
|
|
|
|
|
std::filesystem::path pathFromUnicodeString(std::string&& path);
|
|
|
|
|
|
|
|
std::filesystem::path pathFromUnicodeString(const char* path);
|
|
|
|
}
|
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
#endif // COMPONENTS_FILES_CONFIGURATIONMANAGER_HPP
|