我如何找出java.io.File.mkdir()
退货的原因false
。我可以手动创建目录。
更新:我的代码如下所示:
String directoryName = "C:/some/path/";
File directory= new File(directoryName );
if (!directory.exists() && !directory.mkdir()) {
throw new RuntimeException("Failed to create directory: " + directoryName);
}