如何在用户家中创建目录?
我知道如何创建普通目录,但是如何使用user.home
为其设置路径?
答案 0 :(得分:11)
boolean success = new java.io.File(System.getProperty("user.home"), "directory_name").mkdirs();
答案 1 :(得分:1)
<强> System Properties 强>
提高回答率!收集了所有信息并将它们放在一起。
public static void main(String[] args) {
String myDirectory = "Yash"; // user Folder Name
String path = getUsersHomeDir() + File.separator + myDirectory ;
if (new File(path).mkdir()) {
System.out.println("Directory is created!");
}else{
System.out.println("Failed to create directory!");
}
getOSInfo();
}
public static void getOSInfo(){
String os = System.getProperty("os.name");
String osbitVersion = System.getProperty("os.arch");
String jvmbitVersion = System.getProperty("sun.arch.data.model");
System.out.println(os + " : "+osbitVersion+" : "+jvmbitVersion);
}
public static String getUsersHomeDir() {
String users_home = System.getProperty("user.home");
return users_home.replace("\\", "/"); // to support all platforms.
}
打印所有可用属性。
for (Entry<Object, Object> e : System.getProperties().entrySet()) {
System.out.println(String.format("%s = %s", e.getKey(), e.getValue()));
}