I'm trying to access "external" folder of Android, but I can't find it. Note that my device is Motorola Xoom and I use adb shell.
How can I find external folder? Should I install NDK?
Thank
|
feedback
|
|
Some folders cannot be available to access due to their access permission (require root user permissions). Try to access this folder in emulator. It is rooted by default, and you will see if that is the reason. | |||
|
feedback
|
|
I guess you're referring to sdcard folder. Some devices have only one sdcard, and some android devices have built-in sdcard and support additional so called "external" sdcard. Usually primary sdcard is mounted at If you are not sure what sdcard mount points your device has, then you can list them using:
Here is my output from Samsung Infusion 4g:
| |||
|
feedback
|
|
get the state of external storage to make sure its available :
this will return the state as
.... | |||
|
feedback
|
|
I think you mean the return value of Then the directory isn't "external", maybe /mnt/sdcard/ or other things you can logcat to get the return value from above function. You can access it in the shell by "ls /mnt/sdcard/" | |||||||
feedback
|
|
The external SD Card in Xoom is mounted at /mnt/external1/ and nothing but read access is granted to this directory from any level since it is mounted as read only. As of 3.2 permissions for SD write can be specified in the manifest but MEDIA access remains limited. | |||
|
feedback
|