因此,使用下面的代码,它会在文件夹
中创建文件 File f = new File(path);
if(!f.exists())
f.mkdirs();
,但我只想创建目录,因为在此之后我使用此代码
file.transferTo(new File(path));
将 Multipart文件保存到同一位置,但由于已存在文件,因此会抛出错误。有没有办法只创建没有文件的文件夹? 一种解决方案是删除第一个文件,但寻找更好的解决方案
编辑:
File f = new File(path);
此行创建文件夹和文件,它不应该。我使用java 8和IntelliJ 14
解决方案:
问题是Intellij或Intellij调试手表。重新启动并清除类似的手表后
new File(path)
file.transferTo(new File(path))
f.exists()
代码开始工作了。
答案 0 :(得分:3)
应该是
f.getParentFile().mkdirs();
您不需要事先检查是否存在:mkdirs()
已经这样做了。
答案 1 :(得分:0)
File dir = new File("<Your_Path>/TestDirectory");
// attempt to create the directory here
boolean successful = dir.mkdir();
if (successful)
{
// creating the directory succeeded
System.out.println("directory was created successfully");
}
else
{
// creating the directory failed
System.out.println("failed trying to create the directory");
}
从那时起,您可以在目录路径中创建文件....