このscalaコードの一部:
val file = new File(".")
assert(file.exists == true)
assert(file.getAbsolutePath.length > 0)
println(scala.io.Source.fromFile(file).getLines)
スロー:
FileNotFoundException: . (No such file or directory) (FileInputStream.java:120)
電話をかけている間scala.io.Source.fromFile
。これはどのように可能で、どうすれば修正できますか?
PS:これはPlayFrameworkアプリのテストのコンテキストです。