如何打开文件位置以显示文件?

时间:2019-05-26 11:07:53

标签: android file file-location

我正在制作视频播放器应用。我想添加一个选项,例如,当用户点击时,它将打开默认文件管理器以显示该视频文件的位置。

  

这里是Windows操作系统的示例   enter image description here

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:1)

您可以通过此方法执行此操作。

public void open_Folder(String location)
{
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()
     + File.separator+ location + File.separator);
intent.setDataAndType(uri, "set your data type");
startActivity(Intent.createChooser(intent, "Select file manager app."));
}