" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
bool FileExists(string filepath)
{
ifstream fin;
fin.open(filepath.c_str());
if (fin.is_open())
{
fin.close();
return true;
}
return false;
}