或者,稍微不同的角度:.NET中的Directory.CreateDirectory(“Foo”)的Java等价物是什么?
解决方法
(new File("Foo")).mkdir()
请注意,mkdir()有两种不同的故障模式:
>“如果存在安全管理器并且其checkWrite()方法不允许创建指定目录”,则将抛出SecurityException.
>如果操作由于其他原因而失败,则mkdir()将返回false. (更具体地说,当且仅当目录已创建时,它才会返回true.)
第1点没问题 – 如果您没有权限,请抛出.由于三个原因,第2点略微次优:
>您需要检查此方法的布尔结果.如果忽略结果,操作可能会无声地失败.
>如果得到错误的返回,您不知道为什么操作失败,这使得难以恢复或制定有意义的错误消息.
>严格的“if if only only”合同措辞也意味着如果目录已经存在,则该方法返回false.
Aside: Contrast Point 3 with the
behavIoUr of the .NET
Directory.CreateDirectory()
which
does nothing if the directory exists.
This kind of makes sense — “create a
directory”; “ok,the directory is
created”. Does it matter if it was
created now or earlier; by this
process or another? If you really
cared about that wouldn’t you be asking a different
question: “Does this directory exist?”
下一个警告是mkdir()一次不会创建多个目录.对于我名为“Foo”的目录的简单示例,这很好;但是,如果你想在目录Foo中创建一个名为Bar的目录(即创建目录“Foo / Bar”),你必须记住使用mkdirs()方法.
public static File createDirectory(String directoryPath) throws IOException { File dir = new File(directoryPath); if (dir.exists()) { return dir; } if (dir.mkdirs()) { return dir; } throw new IOException("Failed to create directory '" + dir.getAbsolutePath() + "' for an unknown reason."); }