#pragma once #include #include #include namespace dps { std::filesystem::path path_from_utf8(const std::string &value); std::string path_to_utf8_string(const std::filesystem::path &path); std::string read_text_file(const std::filesystem::path &path); std::vector read_binary_file(const std::filesystem::path &path); } // namespace dps