First we have to start intent on click of button
i.e.
private void openFileManager(int CODE) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
startActivityForResult(intent, CODE);
}
and we can get path in onActivityResult using
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
String FilePath = data.getDataString();
//Whatever you want to do .....You can do here
super.onActivityResult(requestCode, resultCode, data);
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…