I use the code below that opens the gallery, music player, Dropbox and contacts, I want the My Files folder to open programmatically, let me know if there are any specific intent settings that I need to pass in order to get the File Manager opens.
if this is not possible with intent, please give me a snippet or a hint to open the My Files folder programmatically.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("*/*"); Intent i = Intent.createChooser(intent, "View Default File Manager"); startActivityForResult(i, CHOOSE_FILE_REQUESTCODE);
Thanks.
source share