从缓存文件夹中附加文件时出现问题

Problems ataching file from cache folder

我在使用文件提供程序访问文件时遇到异常:java.lang.IllegalArgumentException: Failed to find configured root that contains /data/data/com.mypackage.test/cache/.logs/app.log

我只是获取一个文件路径并用它创建一个 File 对象,然后调用 FileProvider:

files.forEach {
    val file = File(it)
    val uri = FileProvider.getUriForFile(
        application,
        application.packageName + ".provider",
        file
    )
    putExtra(Intent.EXTRA_STREAM, uri)
}

还在清单中添加了提供程序:

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

和 xml 提供程序路径:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">

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

我尝试将 provider_paths 从 external-path 更改为 external-files-path 并尝试使用 external-cache-path 但仍然无法正常工作。我真的不明白我做错了什么。

我还看到,当我调用 cacheDir.absolutePath 时,我得到的是 /data/user/0/com.mypackage.test/cache 而不是 /data/data/com.mypackage.test/cache

对存储在 getCacheDir() 中的文件使用 <cache-path>,而不是 <external-path>,这似乎是您正在使用的文件。