My application has an assets directory in which I\'ve dumped a bunch of text files I need to load at runtime.
I have a directory full of assets of a particular type
When you need to have access to a folder down deeper in your hierarchy use
String[] fileNames =getAssets().list("myFolder"+File.separator+"mysubfolder");
instead of "/" inside the String, which would give you an empty String array as result.