我想在应用中清除whatsapp数据或所有聊天。
whatsapp删除whatsapp设置中的所有聊天而无需root。但我想删除需要root的数据/ data / com.whatsapp。
File dir = new File(getApplicationContext().getFilesDir().getPath() + "/data/com.whatsapp");
deleteFolder(dir);
或
File dir = new File("/data/data/com.whatsapp");
deleteFolder(dir);
如果可以在没有root解释的情况下获得明确的数据,那么用root解释这种方式。