19 lines
308 B
C++
19 lines
308 B
C++
#ifndef FILEUTILS_H
|
|
#define FILEUTILS_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class FileUtils {
|
|
public:
|
|
FileUtils() = default;
|
|
|
|
~FileUtils() = default;
|
|
|
|
static string getFile(char *path);
|
|
static bool fileExists(char *path);
|
|
};
|
|
|
|
#endif |