Cannot make file java.io.IOException: No such file or directory

前端 未结 8 1826
-上瘾入骨i
-上瘾入骨i 2020-12-06 09:11

I am trying to create a file on the filesystem, but I keep getting this exception:

java.io.IOException: No such file or directory

I have an

8条回答
  •  悲&欢浪女
    2020-12-06 09:49

    File.isFile() is false if the file / directory does not exist, so you can't use it to test whether you're trying to create a directory. But that's not the first issue here.

    The issue is that the intermediate directories don't exist. You want to call f.mkdirs() first.

提交回复
热议问题