Util: Add file create function

This commit is contained in:
Riyyi
2022-01-24 00:29:50 +01:00
parent abbf764a3e
commit a8e73063ee
2 changed files with 14 additions and 0 deletions
+2
View File
@@ -16,6 +16,8 @@ public:
File(const std::string& path);
virtual ~File();
static File create(const std::string& path);
void clear();
File& append(std::string data);
File& replace(size_t index, size_t length, const std::string& data);