12345678
bool ifFileExists(std::string File) { ifstream ifs(File.c_str()); if(ifs.is_open()){ return true; } return false; }