Why does Android DDMS File Explorer only show data, mnt, and system directories? There are other directories and files if I execute "adb shell ls -l"
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
I did some digging and found that ADT's File Explorer view is restricted by a class named
Inside of it, you will see a listing of approved top level directories:
Later, this listing is consulted and if it is in the approved list, you will see it in the File Explorer in Eclipse:
So, if you wanted to explore the entire contents of the device, you could change the code to approve all top-level directories by removing that entire block of code. Then you'd have to recompile and install your custom ADT plug-in. Further, when you execute the command:
then you are going into a low-level shell that is like a terminal into your Android device. There's no such filtering at this level. |
|||
|
|