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
I ve use the following code to list the file name in assets/myFolder/:
String[] fileNames =getAssets().list("myFolder"); for(String name:fileNames){ System.out.println(name); }
note that the parameter in the method list does not contains "/".