如何使用文件提供程序在Android中打开目录(文件夹)?

时间:2018-01-02 13:42:35

标签: android android-file android-fileprovider

我想通过大多数文件管理器应用程序打开外部文件目录的下载文件夹。 为此,我尝试了这个:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID, getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS));
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setDataAndType(uri, "*/*");
startActivity(Intent.createChooser(intent, "Open folder"));

我在清单文件中添加了此提供程序:

<provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="${applicationId}"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths" />
</provider>

还有provider_paths xml文件内容:

<paths>
    <external-files-path
        name="files"
        path="." />
</paths>

但它会打开默认Android文件选择器的最新文件夹。

请注意我要打开文件夹而不是文件。

0 个答案:

没有答案