意图从内部存储中的指定目录中选择文件

时间:2019-01-08 16:38:41

标签: android android-intent

我需要创建Intent,它将向我展示一个文件选择器,用于选择指定文件夹中的文件。我使用了这种方法:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri selectedUri = Uri.parse(getFilesDir().getAbsolutePath() + "/FILES");
intent.setDataAndType(selectedUri, "*/*");
startActivityForResult(intent, SCRIPT_REQUEST_CODE);

但这没有打开所需的文件夹。

有人可以告诉您如何打开指定文件夹中的文件选择器吗?

UPD:按照注释中的建议进行了尝试,但我无法选择具有这种意图的文件类型。

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivityForResult(intent, YOUR_RESULT_CODE);

0 个答案:

没有答案