I do have one more question.
the code below seems to work fine. It creates a file in the same directory as the executable after the application is shut down.
a problem i’m having is i need to check to see if the file exist on the harddrive so i can initialize some settings. problem is when i try to check using “TempStateFile->exsistsasfile()” it allways evaluates true even if the file hasn’t actualy been written to the harddrive yet
anyone have any suggestions?
TempStateFile = new File(File::getCurrentApplicationFile());
TempStateFile->setAsCurrentWorkingDirectory();
saveSet = new PropertiesFile(TempStateFile->withFileExtension(T(“mxt”)), 0 , false,false);[/code]