Reputation: 1141
Hi all using Samsung Galaxy GT-1900 ,In eclipse I am trying to access data folder in DDMS file explorer view of my application,its data folder visible but unable to open,facing same problem as posted here Can't access data folder in the File Explorer of DDMS using a Nexus One! I click plus on data folder if disappear for 2-6.I try to explore data folder with normal and also with debug mode.still unable to access this folder.when I run my application on emulator its working fine in emulator I can visit data folder in DDMS file explorer view.Any suited answer how I can access this folder to export/explore my database and txt files.Below I am attaching my DDMS view ..
Upvotes: 2
Views: 8198
Reputation: 17557
On rooted device you can do this:
adb shell
'su
chmod 777 /data /data/data /data/data/com.application.pacakage
After this you should be able to browse the files on the device.
Upvotes: 8
Reputation: 10533
Afaik, you need to root your phone to get access to /data
, it's forbidden due to rights management, by default.
Upvotes: 2