Pablo
01/13/2025, 2:05 PMval routesPath = "gtfs-files/routes.txt"
val file = File(routesPath)
BufferedReader(FileReader(file))
That gives FileNotFoundException
but the files are on that folder in the project main directoryKirill Grouchnikov
01/13/2025, 3:55 PMsrc/main/resources
and that will get copied into the build
folder so that you can access it with whatever Java APIs you’re using.