[android-developers] Is there a place to write temporary files

2010-03-24 Thread lordjoe
I am writing a content provider to access data in a zip file. The plan is to extract data as needed to temporary files since the API REQUIRES a file descriptor (as opposed to an input stream). The question is where can an Android app write files - we can assume these are small and regularly

Re: [android-developers] Is there a place to write temporary files

2010-03-24 Thread Mark Murphy
lordjoe wrote: I am writing a content provider to access data in a zip file. The plan is to extract data as needed to temporary files since the API REQUIRES a file descriptor (as opposed to an input stream). The question is where can an Android app write files - we can assume these are small