如何创建目录/文件夹?
一旦我测试了System.getProperty("user.home");
我必须创建一个目录(目录名“新文件夹”)当且仅当新文件夹不存在时。

最佳答案

7年后,我会更新它,以更好的方法,这是由波佐建议。

new File("/path/directory").mkdirs();

贬低:
File theDir = new File("new folder");

// if the directory does not exist, create it
if (!theDir.exists()) {
    System.out.println("creating directory: " + theDir.getName());
    boolean result = false;

    try{
        theDir.mkdir();
        result = true;
    }
    catch(SecurityException se){
        //handle it
    }
    if(result) {
        System.out.println("DIR created");
    }
}

10-06 01:36