I was wondering if it was possible to create a method that would check if the current file exists, and if it does, then it creates a new file with the same name but +1. Eg. file, file1,file2,file3.
This needs to happen even if my application crashes. Currently im using this
Path = xxxxxxx;
index=0;
int index = 0;
File myFile = new File(Path);
if(!myFile.exists()){
myFile.createNewFile();
}
else
{
index++;
this.resultPath = xxxxxxx + index;
}
This is always returning an infinate loop since my app crashes ( it's supposed to ) and index just gets restarted back to 0 and the loop checks for index=0 infinately. Any help would be appreciated ty.