Re: [android-developers] How To Access Device Internal Storage?

2012-05-11 Thread Ken Plumley
Mark, Is the Android Dev Guide not correct? The Android Dev Guide makes this claim: public static Filehttp://developer.android.com/reference/java/io/File.html getExternalStorageDirectory () Since: API Level 1http://developer.android.com/guide/appendix/api-levels.html#level1 Gets the Android

Re: [android-developers] How To Access Device Internal Storage?

2012-05-11 Thread Ken Plumley
Mark, Ok, that´s my confusion of the storage terms. What code do I use in the else if statement section to store files on the device built-in external storage? Thanks. On Fri, May 11, 2012 at 1:50 PM, Mark Murphy mmur...@commonsware.comwrote: On Fri, May 11, 2012 at 4:30 PM, Ken Plumley

Re: [android-developers] How To Access Device Internal Storage?

2012-05-11 Thread Ken Plumley
); // Make sure the directory exists. subdirectory.mkdirs(); } else {} Thanks. On Fri, May 11, 2012 at 2:16 PM, Mark Murphy mmur...@commonsware.comwrote: On Fri, May 11, 2012 at 5:12 PM, Ken Plumley wrote: Ok, that´s my confusion of the storage terms. What code do I use in the else

Re: [android-developers] How To Access Device Internal Storage?

2012-05-11 Thread Ken Plumley
http://www.virginmobileusa.com/cell-phones/motorola-triumph-phone.jsp On Fri, May 11, 2012 at 2:38 PM, Mark Murphy mmur...@commonsware.comwrote: On Fri, May 11, 2012 at 5:30 PM, Ken Plumley wrote: So the code below will work for both the sd card and the device built-in external

Re: [android-developers] How To Access Device Internal Storage?

2012-05-11 Thread Ken Plumley
Mark, Thanks for clarifying this multiple external storage issue. It has been confusing me on how to store files on two external storage areas. Thanks again. On Fri, May 11, 2012 at 3:36 PM, Mark Murphy mmur...@commonsware.comwrote: On Fri, May 11, 2012 at 6:12 PM, wrote: How does the