#pragma once #include class Utils { public: static inline bool exists(const char* path) { struct stat buffer; return (stat(path, &buffer) == 0); } };