如何打开导航到android中特定目录的文件管理器?

时间:2018-05-19 10:28:46

标签: android android-file

我想通过提供文件绝对路径在文件管理器中显示下载的文件。我读了很多关于它并找到相同的东西

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(file.getAbsolutePath());
intent.setDataAndType(uri, "*/*");
startActivity(Intent.createChooser(intent, "Open folder"));

结果仅查看已被删除的最近文件。请指导打开文件管理器,同时导航它到已给出绝对路径的文件。

1 个答案:

答案 0 :(得分:0)

  

我读了很多关于它并发现同样的事情

ACTION_GET_CONTENT与文件管理器没什么关系。

  

请指导Open File Manager,同时将其导航到已给出绝对路径的文件。

Android上没有任何内容,抱歉。