gpt4 book ai didi

java - 在另一个新文件夹中创建一个新文件夹

转载 作者:行者123 更新时间:2023-12-02 06:16:59 27 4
gpt4 key购买 nike

我知道如何创建一个新文件夹,但我不知道如何在我刚刚创建的新文件夹中创建另一个新文件夹

String y="C:/TEMP/Four Area";
File file=new File(y);
if(file.mkdir()){
System.out.println("file is created");
}else{
System.out.println("file is created");
}

但是我想要的是“C://TEMP/Four Area/New Area”,我希望系统在上面的代码中将“New Area”文件夹创建到“Four Area”文件夹中。我尝试使用 String y="C://TEMP/Four Area/New Area,它不会创建任何文件夹

最佳答案

使用file.mkdirs()而不是创建多个嵌套目录

Creates the directory named by this abstract pathname, including any necessary but nonexistent parent directories. Note that if this operation fails it may have succeeded in creating some of the necessary parent directories.

关于java - 在另一个新文件夹中创建一个新文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21367984/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com