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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Make a local copy of the files using
adb pull /system system; adb pull /data dataand 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.