Andrew Huff wrote: > anyone have any insight as to why this error is happening and a > possible fix?
/data/data/com.blah.blah/files/special_button.png is a reference to a file in your app-local file storage area. AFAIK, nothing in Android directly refers to files there except under your direction. Hence, it feels like you are calling delete() or unlink() on a File that does not exist. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training in US: 22-26 February 2010: http://onlc.com -- 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

