How do I check if a path / file exists in Scala similar to Python ? An example below:
os.path.exists(\"/home\") Out[4]: True
Well, sorry I found the answer to my own question:
scala> new java.io.File("/tmp").exists res0: Boolean = true