Method get()
fun FileSystem:get(path: [Path | String]): File
Returns the file for a given absolute path or a path string.
Note that the function does not perform file existence checks.
It simply returns a File
with the given path
.
You might want to call File.exists()
later.