DDMS FileExplorer contents visibility beyond eclipse IDE

1.2k Views Asked by At

Other than Eclipse DDMS File Explorer where I can see those(i.e mnt,data,system) folder and files,So i can do modify easily.

1

There are 1 best solutions below

2
On BEST ANSWER

Yes you can use adb shell command to browse files of the device/emulator from command prompt or terminal

by issueing adb shell command on your command prompt you can starts a remote shell in the target emulator/device. And you dont need to broswe files from the eclipse FileExplorer view.

Suppose you want to broswe data directory then use this command:

adb shell ls /data

result of the command adb shell ls /data

Note: you can find adb in <sdk>\platform-tools\ or <sdk>\tools\

Refer this for more information.