I am facing an issue while choosing a file from Downloads directory using ACTION_GET_CONTENT.
If I delete any file in ES explorer or fi
You must have to call getContentResolver().delete(uri, null, null)
while deleting the file, where uri
is the URI of the file to delete. This will update Media Store, which holds URIs of all files. So, when ACTION_GET_CONTENT opens the downloads directory, the file you deleted won't appear here.