PlantCtrl/esp32/include/FileUtils.h
2021-06-29 22:09:30 +02:00

9 lines
216 B
C

#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