I am creating folder X in my android app , which has list of files .This list needs to displayed to user for selection , Whats the relative path used to access list of files located in folder X. I tried /X , ./X but it does not not return the list of files in that folder.
Asset can one of the option , but when i created new folders under asset folder , it did not recognize it , i.e getAssets().list(“”) did not return these new folders??? aren new folders allowed in asset ? do we have to stick to image ,sound and webkit?
Thanks
Kavitha
Asset folder was the way to go , we can create multiple sub folders and also place the files we want .Using asset manager we can specify relative path and list files and open files.