NJUPT-Compile/1/Utils.cpp

7 lines
123 B
C++
Raw Normal View History

2024-06-15 15:40:42 +02:00
#include "Utils.h"
bool Utils::file_exists(const char *filename) {
ifstream file(filename);
return file.good();
}