一部のユーザー設定を home/appdata フォルダーに保存しようとしていますが、dir.canwrite() を使用すると false が返されます。これは、home/appdata フォルダーを特定するために使用するコードです。
public static String getAppDataPath() {
if (System.getProperty("os.name").contains("Windows")) {
return System.getenv("APPDATA");
} else {
return getUnixHome();
}
}
public static String getUnixHome() {
String home = System.getProperty("user.home");
return home != null ? home : "~";
}
そして、これは mkdir を試みるコードです:
public static boolean checkExistenceDir(String path) {
File dir = new File(path);
if(!dir.exists()) {
dir.mkdir();
}
}
問題のパスは次のとおりです。
getAppDataPath() + ".foo" + File.separatorChar