我想創建文件系統中的文件,但我不斷收到此異常:不能使文件產生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)`
我有寫權限的路徑,但文件沒有創建。
可否請您加入到第一行之後這條線,向我們展示了輸出固定我的問題內容:System.out.println(F); –
你確定目錄'.foo/bar'確實存在? – trojanfoe
** /。foo/bar **中的點是什麼? – denolk