#ifndef FILEUTILS_H #define FILEUTILS_H #include #include using namespace std; struct FileUtils { static bool fileExists(const char *path); static char* getFiles(const char *path); }; #endif