如何检查path或文件是否存在于Scala中

如何检查Scala中是否存在与Python相似的path/文件? 下面是一个例子:

os.path.exists("/home") Out[4]: True 

从Java 7开始,更好的方法是

 scala> import java.nio.file.{Paths, Files} import java.nio.file.{Paths, Files} scala> Files.exists(Paths.get("/tmp")) res0: Boolean = true 

那么,对不起,我find了自己的问题的答案:

 scala> new java.io.File("/tmp").exists res0: Boolean = true 

你也可以使用scala库:

 scala.reflect.io.File(scala.reflect.io.Path("<actual file path>")).exists