mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
29 lines
1.5 KiB
C++
29 lines
1.5 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <Geode/DefaultInclude.hpp>
|
||
|
#include "Result.hpp"
|
||
|
#include <string>
|
||
|
#include "types.hpp"
|
||
|
#include "fs/filesystem.hpp"
|
||
|
|
||
|
namespace geode::file_utils {
|
||
|
GEODE_DLL Result<std::string> readString(std::string const& path);
|
||
|
GEODE_DLL Result<std::string> readString(std::wstring const& path);
|
||
|
GEODE_DLL Result<std::string> readString(ghc::filesystem::path const& path);
|
||
|
GEODE_DLL Result<byte_array> readBinary(std::string const& path);
|
||
|
GEODE_DLL Result<byte_array> readBinary(std::wstring const& path);
|
||
|
GEODE_DLL Result<byte_array> readBinary(ghc::filesystem::path const& path);
|
||
|
|
||
|
GEODE_DLL Result<> writeString(std::string const& path, std::string const& data);
|
||
|
GEODE_DLL Result<> writeString(std::wstring const& path, std::string const& data);
|
||
|
GEODE_DLL Result<> writeString(ghc::filesystem::path const& path, std::string const& data);
|
||
|
GEODE_DLL Result<> writeBinary(std::string const& path, byte_array const& data);
|
||
|
GEODE_DLL Result<> writeBinary(std::wstring const& path, byte_array const& data);
|
||
|
GEODE_DLL Result<> writeBinary(ghc::filesystem::path const& path, byte_array const& data);
|
||
|
|
||
|
GEODE_DLL Result<> createDirectory(std::string const& path);
|
||
|
GEODE_DLL Result<> createDirectoryAll(std::string const& path);
|
||
|
GEODE_DLL Result<std::vector<std::string>> listFiles(std::string const& path);
|
||
|
GEODE_DLL Result<std::vector<std::string>> listFilesRecursively(std::string const& path);
|
||
|
}
|