0

After lot of searching i found below result but did't work for me. i did through the same procedure but unable to open data/data folder in eclipse ddms it shows su not found every time.

I want to open data/data folder of device so that i can view the flies which i store in internal storage.please suggest the alternative of this. can i open it with any tool ?

On rooted device you can do this:

Open cmd prompt

Type 'adb shell'

su

Press 'Allow' on device

chmod 777 /data /data/data /data/data/com.application.pacakage /data/data/com.application.pacakage/*

Go to the DDMS view in Eclipse After this you should be able to browse the files on the device.

Vadivel
  • 780
  • 1
  • 6
  • 21
  • I think you should copy the directory from internal storage to external storage programmaticaly. Then you can retrieve the same external storage from ddms. – Ready Android Nov 22 '16 at 06:59

1 Answers1

1

If you want to see all files you are storing inside your app folder, Run the adb with your app permissions, The you can see all your app folders.

adb shell
run-as com.your.package
cd data/data/com.your.package
ls

Then navigate through all your files

for reference https://stackoverflow.com/a/16461386/4804264

Community
  • 1
  • 1
Sujith Niraikulathan
  • 2,111
  • 18
  • 21