Is there a way to use FileOutputStream in a way that if a file (String filename) does not exist, then it will create it?
FileOutputStream oFile = new FileOutputStream("score.txt", false);
Is there a way to use FileOutputStream in a way that if a file (String filename) does not exist, then it will create it?
FileOutputStream oFile = new FileOutputStream("score.txt", false);