I have a concept of file uploading in my application. When I clicks the button file upload then it is showing all the folders available in my device like File Explorer, Gallery etc. It is also showing the Google Drive folder. But I don't want to make it visible.
I don't know how to do that?
Please someone can help me.
This is my code.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
            intent.setType("*/*");
            startActivityForResult(Intent.createChooser(intent,
                    "Select a file to upload"), FILE_SELECT_CODE);
 
     
    