ルートに作成されているフォルダは、これでいいです。この方法でもファイルとフォルダが作成されますが、フォルダに作成する方法はわかりません。ここでフォルダを作成してtxtファイルを作成して登録メソッド(Java)を作成する
は、私がこれまで持っているものです。
public void registration(TextField user, PasswordField pass){
File admin = new File("adminstrator");
if(!admin.exists()){
admin.mkdir();
}
//add some way to save file to admin folder
try (BufferedWriter bw = new BufferedWriter(new FileWriter("USER_PASS.txt", true))){
bw.write(user.getText());
bw.newLine();
bw.write(pass.getText());
bw.newLine();
bw.close();
}
catch(IOException e){
e.printStackTrace();
}
}