mgamer
mgamer

Reputation: 14060

Explore internal storage in Android

Is it possible to explore Android internal storage? I need this for debugging purposes to aid my development efforts.

Upvotes: 1

Views: 851

Answers (2)

Alexander Lucas
Alexander Lucas

Reputation: 22371

You can on the emulator, or on an rooted device. just

adb shell

with the device connected, and navigate from there.

Upvotes: 1

Manfred Moser
Manfred Moser

Reputation: 29912

What do you mean by internal storage? If you mean e.g. where your app is installed and such .. yes you can on the emulator. On the device you can if you are root..

E.g. you app will be installed in /data/data/com.pacakgee/ and in there will be e.g. a database folder and other stuff depending on what your app does.

Upvotes: 0

Related Questions