Android - get DocumentFile with write access for any file path on sd card (having allready gained sd card permission)
问题 In my app I gain sd card write permission using the following intent. If the user selects the sd card folder from the system file explorer then I have sd card write access. Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE); intent.putExtra("android.content.extra.SHOW_ADVANCED", true); startActivityForResult(intent, 42); After that I am able to modify files in th sd card using the DocumentFile class. But I'm having problem getting a DocumentFile for a random file path. Document