mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-18 06:08:41 +00:00
37 lines
742 B
C++
37 lines
742 B
C++
/**
|
|
* Karaka
|
|
*
|
|
* @package Utils
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
#ifndef UTILS_TEST_UTILS_H
|
|
#define UTILS_TEST_UTILS_H
|
|
|
|
#ifdef _WIN32
|
|
#include <unistd.h>
|
|
#include <stdbool.h>
|
|
#elif defined __linux__
|
|
#include <sys/stat.h>
|
|
#endif
|
|
|
|
namespace Utils {
|
|
class FileUtils {
|
|
private:
|
|
|
|
public:
|
|
static inline
|
|
bool file_exists (char *filename) {
|
|
#ifdef _WIN32
|
|
return access(filename, F_OK) == 0;
|
|
#elif defined __linux__
|
|
struct stat buffer;
|
|
return stat(filename, &buffer) == 0;
|
|
#endif
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif |