Business Talk wrote: > I don’t see ‘files’ directory under the /data/data/<my paplication>/ > in the ddms (in the emulator).
That should be lazy-created the first time you try using it from your app. You will not be able to push a file there until then. Bear in mind that you will not be pushing files in that directory in production, in part because the device won't allow it, and in part because you (presumably) won't have access to all your users' phones. Hence, your application will need to handle the case where the file you seek is not there (e.g., you haven't downloaded it off the Web just yet). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

