0

I want to build an application that use a sqlite db out of my project(suppose that the folder and database build by myself before and it is placed at "/Internal storage/myDB"). my question is how can access to that db (and "select * from tableName").

soroosh elyasi
  • 116
  • 1
  • 6

1 Answers1

0

In Android, I don't think you can create a folder with files in App's Internal Storage in advance.

See this guide for Android Internal Storage

By default, files saved to the internal storage are private to your application and other applications cannot access them (nor can the user).

However, if you means internal (non-removable) storage kind of External Storage, then please read this and this answer.

Ken Ratanachai S.
  • 3,307
  • 34
  • 43