#ifndef FILEUTILS_H #define FILEUTILS_H #include #include using namespace std; class FileUtils { public: FileUtils() = default; ~FileUtils() = default; static string getFile(char *path); static bool fileExists(char *path); }; #endif