by running this...
File file = new File(\"Highscores.scr\");
i keep getting this error, and i really don\'t know how to get around it. the fil
You can try to run the following sample program to check which is the current directory your program is picking up.
File f = new File("."); System.out.println("Current Directory is: " + f.getAbsolutePath());