无法创建文件java.io.IOException:没有这样的文件或目录
我正在尝试在文件系统上创建文件,但我不断收到此异常:
java.io.IOException: No such file or directory
我有一个现有目录,并且正在尝试将文件写入该目录。
// I have also tried this below, but get same error// new File(System.getProperty("user.home") + "/.foo/bar/" + fileName);
File f = new File(System.getProperty("user.home") + "/.foo/bar/", fileName);
if (f.exists() && !f.canWrite())
throw new IOException("Kan ikke skrive til filsystemet " + f.getAbsolutePath());
if (!f.isFile()) {
f.createNewFile(); // Exception here
} else {
f.setLastModified(System.currentTimeMillis());
}
获取异常:
java.io.IOException: No such file or directory at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:883)`
我对该路径具有写权限,但是未创建文件。
回答:
打印完整的文件名或进入调试器。当我对这样的错误感到困惑时,这意味着我的假设和期望与现实不符。确保您可以 看到
路径是什么;它可以帮助您弄清楚哪里出了问题。
以上是 无法创建文件java.io.IOException:没有这样的文件或目录 的全部内容, 来源链接: utcz.com/qa/436193.html