>From my unix/linux knowledge, I have to correct this: $ adb shell ls -ls /sdcard/bash_profile 32 -rwxrwxr-x 1 1000 1015 157 Sep 15 14:13 /sdcard/ bash_profile
- type of file is file - its empty for normal files, d for directory and some other values (see man ls) the leftmost "rwx" is permission of owner (readable, writable, executable) - the owner of the file as uid (here: 1000) then, the next "rwx" is permission of group - the group of the file as groupid (here: 1015) then, the last "r-x" is permission of others - means all those processes that are neither owner or belong to the group. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

