Contents: //com.package_name.dbprovider_name/table_name
you have the following code
File dbFile = this.getDatabasePath(DB_NAME);
for (File f:files)
{
if (f.isDirector)
searchFile(f);
else if (f.getName().equals("accounts.db"))
{
}
}
if it contains the accounds.db file. If you get to another subdirectory, call your own function recursively with a subfolder as the starting point,
source
share