1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 21:45:04 +01:00
AIO-switch-updater/include/fs.hpp

17 lines
490 B
C++
Raw Normal View History

2021-03-16 14:56:46 +00:00
#pragma once
#include <switch.h>
#include <set>
#include <json.hpp>
namespace fs
{
int removeDir(const char* path);
nlohmann::ordered_json parseJsonFile(const std::string& path);
void writeJsonToFile(nlohmann::json &data, const std::string& path);
bool copyFile(const std::string& from, const std::string& to);
std::string copyFiles(const std::string& path);
2021-03-16 14:56:46 +00:00
void createTree(std::string path);
std::set<std::string> readLineByLine(const std::string& path);
2021-03-16 14:56:46 +00:00
}