Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 2, 2022 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/da307fe2aace19f3bf03ec7e976f5917 to your computer and use it in GitHub Desktop.
Save parzibyte/da307fe2aace19f3bf03ec7e976f5917 to your computer and use it in GitHub Desktop.
bool archivo_existe(string nombre)
{
ifstream archivo(nombre.c_str());
return archivo.good();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment