Re: [android-developers] Re: is there a way to explore directory structure in assets/?

2012-06-04 Thread Latimerius
On Sun, Jun 3, 2012 at 9:41 AM, viktor victor.scherb...@gmail.com wrote: Have you evere worked with file system with Java? Yes. You should iterate every subdirectories(like recursive method). If you done this you will have full tree of accert folder. The way I read the documentation you

Re: [android-developers] Re: is there a way to explore directory structure in assets/?

2012-06-04 Thread Latimerius
On Mon, Jun 4, 2012 at 2:03 AM, lbendlin l...@bendlin.us wrote: Aren't you the one who put stuff into the asset folder structure? So you should know what's there, and where. Heh, an interesting take on data-driven design. ;-) Seriously - I'm writing code that has to work with multiple APKs

[android-developers] Re: is there a way to explore directory structure in assets/?

2012-06-04 Thread Chris Stratton
On Jun 4, 12:08 pm, Latimerius l4t1m3r...@googlemail.com wrote: On Mon, Jun 4, 2012 at 2:03 AM, lbendlin l...@bendlin.us wrote: Aren't you the one who put stuff into the asset folder structure? So you should know what's there, and where. Seriously - I'm writing code that has to work with

Re: [android-developers] Re: is there a way to explore directory structure in assets/?

2012-06-04 Thread Latimerius
On Mon, Jun 4, 2012 at 7:42 PM, Chris Stratton cs07...@gmail.com wrote: It seems like it has been discussed a bit, with people having various degrees of success: http://stackoverflow.com/questions/3631370/list-assets-in-a-subdirectory-using-assetmanager-list I came across this but (perhaps I

[android-developers] Re: is there a way to explore directory structure in assets/?

2012-06-03 Thread viktor
Have you evere worked with file system with Java? You should iterate every subdirectories(like recursive method). If you done this you will have full tree of accert folder. On 2 Чер, 22:55, Latimerius l4t1m3r...@googlemail.com wrote: There's AssetManager.list() but that doesn't seem to pick up

[android-developers] Re: is there a way to explore directory structure in assets/?

2012-06-03 Thread lbendlin
Aren't you the one who put stuff into the asset folder structure? So you should know what's there, and where. On Saturday, June 2, 2012 3:55:58 PM UTC-4, Latimerius wrote: There's AssetManager.list() but that doesn't seem to pick up subdirectories. Other than via AssetManager, how am I