Renamed Exist method to FileExist

This commit is contained in:
emerycp
2023-07-07 18:33:29 -04:00
parent 1885f1a853
commit 6b4d0c0f69
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ namespace Nuake
projectFile.close();
}
bool Project::Exist()
bool Project::FileExist()
{
struct stat buffer{};
return (stat (this->FullPath.c_str(), &buffer) == 0);