seaquest
seaquest

Reputation: 80

finding files on android os

There is no utilites like find, grep , "ls -laR" to find files in Android os. IS there a way or is there a list of current default files in the os file system hierarchy?

Upvotes: 3

Views: 3528

Answers (1)

Make a local copy of the files using adb pull /system system; adb pull /data data and use your favorite tools to search on your development machine. Or you can install BusyBox on the emulator, which gives you something intermediate between the extremely limited built-in command line and a full unix command line.

Upvotes: 1

Related Questions