fixed config backup and restore

This commit is contained in:
Your Name
2021-06-29 22:09:30 +02:00
parent c22c14a42b
commit 191e05b941
3 changed files with 119 additions and 54 deletions

View File

@@ -0,0 +1,9 @@
#ifndef FILEUTILS_H
#define FILEUTILS_H
bool doesFileExist(const char *source);
bool copyFile(const char *source, const char *target);
bool deleteFile(const char *source);
void printFile(const char *source);
#endif