Do you know how to enumerate files in app's folder on actual G1 (not emulator or devphone)? Because normally app haven't direct access to file system, you can't do something like:
Using java Syntax Highlighting
- File f = new File("./data/data/mypack.myapp/files")
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
and then
Using java Syntax Highlighting
- File fs[] = f.listFiles()
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
I just want to know all the filenames in my app's folder, and then I can operate via Hub.MainContext.openFileInput/Hub.MainContext.openFileOutput.
Any suggections?

