Search code examples
androidscoped-storage

Access all files on android


I am trying to make a file manager type application and I want to access all files. I know it will need MANAGE_EXTERNAL_STORAGE permission but I am not able to figure out which api should I use.


Solution

  • I am trying to make a file manager type application and I want to access all files.

    I'll recommend you to start from here : Manage all files on a storage device (keep in mind you cannot write internal storage on a non-rooted device).

    I am not able to figure out which api should I use.

    MediaStore might suit your needs (even if your question is a bit generic) , so give it a reading to Access media files from shared storage.