How can I write a file in the /cache
directory? I continue to get a FileNotFoundException (Permission denied)
.
Someone told me about the android.permission.ACCESS_CACHE_FILESYSTEM
but i can't find it in the Android reference.
Any help will be appreciated.
EDIT: i'm using level 13 apis
You can only write to the cache directory of your own application: use
context.getCacheDir()
to get its location.