Difference between revisions of "Talk:Android File System"
From Free Knowledge Base- The DUCK Project: information for everyone
(→adb: new section) |
(→list contents of /data/app without root: new section) |
||
Line 21: | Line 21: | ||
what? | what? | ||
+ | |||
+ | == list contents of /data/app without root == | ||
+ | |||
+ | To do this from the command line, use adb shell pm list packages to get the list of installed packages, pick the desired package, append -1.apk to it, and pull it from /data/app. Example: If the package name is org.mozilla.firefox, use adb pull /data/app/org.mozilla.firefox-1.apk. – sschuberth Jun 7 '13 at 12:16 |
Revision as of 16:19, 4 February 2014
using a "media" intermediary directory
Some people are using a "media" intermediary directory between the standard public directory and the storage root. See below
- /sdcard/media/alarms OR /sdcard/Alarms
- /sdcard/media/notifications OR /sdcard/notifications
- /sdcard/media/ringtones OR /sdcard/ringtones
- /sdcard/media/ui OR /sdcard/ui
Warning: This may be incorrect.
adb
adb is part of Android SDK
Someone claims a workaround to view the filenames in the /data/app folder without having root exists using "adb".
adb shell pm list packages
to get a list of packages installed
However, you need to root the Android device to install Android SDK.
what?
list contents of /data/app without root
To do this from the command line, use adb shell pm list packages to get the list of installed packages, pick the desired package, append -1.apk to it, and pull it from /data/app. Example: If the package name is org.mozilla.firefox, use adb pull /data/app/org.mozilla.firefox-1.apk. – sschuberth Jun 7 '13 at 12:16