9

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

kapa
  • 77,694
  • 21
  • 158
  • 175
lorenzoff
  • 1,120
  • 3
  • 15
  • 32

1 Answers1

28

You can only write to the cache directory of your own application: use context.getCacheDir() to get its location.

clemp6r
  • 3,665
  • 2
  • 26
  • 31