gpt4 book ai didi

Java:如何在 Mac OS X 中创建新文件夹

转载 作者:行者123 更新时间:2023-11-29 06:06:27 24 4
gpt4 key购买 nike

我想在 ex 中创建一个文件夹。我在 Mac OS X 中的桌面

我尝试使用此代码,而不是 Mymac 当然是我的名字:)

String path="/Users/Mymac/Desktop";
String house = "My_home";
File file=new File(path);
if(!file.exists())
file.mkdirs(); // or file.mkdir()

file=new File(path + "/" + house);
try {
if(file.createNewFile())
{
}
} catch (IOException ex) {

ex.printStackTrace();
}

你知道如何创建新文件夹吗?另一件事是当我想在我的代码所在的目录中创建一个文件夹时,你知道我怎么写吗?我试过了

   String path="./";

String path="::MyVolume";

String path=".";

最佳答案

独立于平台的方式:

File rootDir = File.listRoots()[0];
File dir = new File(new File(new File(rootDir, "Users"), "Mymac"), "Desktop");
if (!dir.exists()){
dir.mkdirs();
}

关于Java:如何在 Mac OS X 中创建新文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8387581/

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