On Mar 29, 2:20 pm, Streets Of Boston <[email protected]> wrote: > In short, don't call System.exit(). :-)
Or System.halt(). Or Process.killMeKillMeKillMeNow(). > On Mar 29, 5:10 pm, lordjoe <[email protected]> wrote: > > So my take on this is not only can I not COUNT on deleteOnExit() > > behaving properly but I can basically count on it never being called. Yup. You can either take advantage of Linux's ability to continue to work with open files after they have been deleted, or clean up after the previous run when the next run starts. The latter has a disadvantage in that it won't happen if the app is uninstalled, which is a problem if your temp files are out on external storage. -- 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 To unsubscribe, reply using "remove me" as the subject.

