Так что да, я делаю текстовую RPG в форме апплета.Этот апплет записывает в ваш каталог APPDATA при открытии.Это работает в IDE, но когда я пытаюсь сделать это в Firefox, появляется сообщение об ошибке. ЗДЕСЬ является ссылкой.
File otherWorldDirectory = new File(System.getenv("APPDATA") + "\\.otherWorld");
if (!otherWorldDirectory.exists()) {
//Adding the folder .otherWorld to the APPDATA
otherWorldDirectory.mkdir();
System.out.println("Directory '.otherWorld' created.");
} else {
//The folder .otherWorld already exists.
System.out.println("Directory '.otherWorld' is not created, it exists.");
}