如何在java中创建空文件夹?

发布于 2024-10-13 23:34:30 字数 139 浏览 1 评论 0原文

我尝试使用File 类在“C:/Temp/Emptyfile”等目录中创建一个空文件。 但是,当我这样做时,它会显示一个错误:“已创建文件夹 Temp”。否则,它不会为我创建一个。

那么,如何使用 java API 创建文件夹呢?

I tried to use the File class to create an empty file in a directory like "C:/Temp/Emptyfile".
However, when I do that, it shows me an error : "already made folder Temp". Otherwise, it won't create one for me.

So, how do I literally create folders with java API?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌路黄昏 2024-10-20 23:34:30

您可以使用以下 Java 代码创建文件夹:

File dir = new File("nameoffolder");
dir.mkdir();

通过执行上面的操作,您将在当前文件夹中拥有文件夹“nameoffolder”。

You can create folder using the following Java code:

File dir = new File("nameoffolder");
dir.mkdir();

By executing above you will have folder 'nameoffolder' in current folder.

屋檐 2024-10-20 23:34:30

查找您在 File 对象上使用 .mkdirs() 方法的文件:http://www.roseindia.net/java/beginners/java-create-directory.shtml

// Create a directory; all non-existent ancestor directories are
// automatically created
success = (new File("../potentially/long/pathname/without/all/dirs")).mkdirs();
if (!success) {
    // Directory creation failed
}

Looks file you use the .mkdirs() method on a File object: http://www.roseindia.net/java/beginners/java-create-directory.shtml

// Create a directory; all non-existent ancestor directories are
// automatically created
success = (new File("../potentially/long/pathname/without/all/dirs")).mkdirs();
if (!success) {
    // Directory creation failed
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文