Android 9 Pie SMS는 어디에 저장되어 있습니까? SMS 데이터베이스의 경로는 무엇입니까?

Aug 20 2020

Android 9 SMS는 어디에 저장되어 있습니까? 경로는 무엇입니까?

답변

1 St0rm Aug 20 2020 at 19:41

@alecxs에서 언급했듯이 SMS는 데이터베이스에 저장됩니다. "/data/user_de/0/com.android.providers.telephony/databases/mmssms.db"에 액세스하거나 편집하려면 루트 권한이 필요합니다.

루트 액세스 권한이없는 경우 smsADB를 사용하여이 데이터베이스 의 테이블과 상호 작용할 수 있습니다 .

모든 SMS 나열

adb shell content query --uri content://sms 

+2121212121에서 SMS 나열

adb shell content query --uri content://sms --projection address:date:date_sent:body --where 'address=+2121212121'