Re: [android-developers] on sdcard, File.canRead() = true, File.canWrite() = false

2010-08-09 Thread Mark Murphy
On Mon, Aug 9, 2010 at 1:59 PM, john brown wrote: > PROBLEM: I cannot write to a file on the sdcard. > QUESTION: Is it possible to write to a file on the sdcard? Yes, if you hold the WRITE_EXTERNAL_STORAGE permission. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/com

Re: [android-developers] on sdcard, File.canRead() = true, File.canWrite() = false

2010-08-09 Thread Kostya Vasilyev
John, Did you add this to your application's manifest? -- Kostya 09.08.2010 21:59, john brown пишет: Hello, Documentation source> http://developer.android.com/guide/topics/data/data-storage.html "Every Android-compatible device supports a shared "external storage" that you can use to sav

[android-developers] on sdcard, File.canRead() = true, File.canWrite() = false

2010-08-09 Thread john brown
Hello, Documentation source > http://developer.android.com/guide/topics/data/data-storage.html "Every Android-compatible device supports a shared "external storage" that you can use to save files. This can be a removable storage media (such as an SD card) or an internal (non-removable) storage.