Hi, real quick question here, how do I access the files outside src folder? Say I put a data.json files in the resources folder, and want to read in from Application.kt in src folder, what should I put in "...." below?
Copy code
val inputStream = Files.newInputStream(Paths.get("...."))
I've tried various ways, and none of them work unless using an absolute path. Is there a way to use a relative path? Thanks