2
votes
1answer
477 views

Using “path” and “asset” for non-template data

When creating templates with Twig, it's easy to use the path and asset functions. <a href="{{ path('my_route') }}"><img src="{{ asset('bundles/acmedemo/my_image.png') }}" /></a> ...
7
votes
2answers
9k views

Android: How to find the absolute path of the assets folder?

I need to get the absolute path of the assets folder in my app as I want to serve the files within using a webserver and it needs the absolute path. Is this possible? I would have thought there might ...
13
votes
6answers
36k views

Android path to asset txt file

I'm doing: FileReader fin = new FileReader("file:///android_asset/myFile.txt"); in an Android project and many variations. At runtime I get a file not found exception. The file is present and ...