[android-developers] Re: File IO works on Emulator but not my snowball board

2012-07-20 Thread marcpolo
Problem solved. I had to enable user permissions (chmod) on the mnt/sdcard/ directory. Thanks for the feedback. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: File IO works on Emulator but not my snowball board

2012-07-19 Thread bob
Make sure you have WRITE_EXTERNAL_STORAGE permission and you are writing in the sd card directory (i.e. /mnt/sdcard/myfile.txt) On Thursday, July 19, 2012 2:06:40 PM UTC-5, marcpolo wrote: Hi, I am unable to get file IO working on my snowball board, with the log reporting I have

[android-developers] Re: File IO works on Emulator but not my snowball board

2012-07-19 Thread marcpolo
Thanks for the suggestion. I have the following in my manifest file uses-permission android:name=android.permission.WRITE_INTERNAL_STORAGE/ uses-permission android:name=android.permission.READ_INTERNAL_STORAGE/ uses-permission android:name=android.permission.WRITE_EXTERNAL_STORAGE/

Re: [android-developers] Re: File IO works on Emulator but not my snowball board

2012-07-19 Thread Mark Murphy
On Thu, Jul 19, 2012 at 5:53 PM, marcpolo marc.armstron...@gmail.com wrote: Thanks for the suggestion. I have the following in my manifest file uses-permission android:name=android.permission.WRITE_INTERNAL_STORAGE/ uses-permission android:name=android.permission.READ_INTERNAL_STORAGE/ There

[android-developers] Re: File IO works on Emulator but not my snowball board

2012-07-19 Thread bob
Try uploading a file into the /mnt/sdcard dir (or maybe /sdcard?) using Eclipse's File Explorer window. This will tell us if you have permission. On Thursday, July 19, 2012 4:53:58 PM UTC-5, marcpolo wrote: Thanks for the suggestion. I have the following in my manifest file

[android-developers] Re: File IO works on Emulator but not my snowball board

2012-07-19 Thread marcpolo
I can copy a file onto sdcard using an adb push command, however this is effectively as a root user. On Thursday, 19 July 2012 23:31:05 UTC+1, bob wrote: Try uploading a file into the /mnt/sdcard dir (or maybe /sdcard?) using Eclipse's File Explorer window. This will tell us if you have