Hi,
I wanna ask you if there is SIMPLE way to check if file called XXX is in path YYY? I have this Code:
int GetLocation()
{
GetName();
string location;
location += "C:\\Users\\" + name + "\\Documents\\test.txt";
if(location)
return 1;
else
return 0;
}
int main()
{
if(GetLocation() == 1)
Start();
else
ExitProcess(0);
return 0;
}