在 Android 11 上构建文件资源管理器
Building a File Explorer on Android 11
我期待构建一个文件资源管理器应用程序,但我对我发现的内容感到震惊我确实需要完整的 read/write 权限和对所有内容的访问权限。
正如他们所说 here:
Declare the MANAGE_EXTERNAL_STORAGE permission in the manifest.
Use the ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION intent action to direct users to a system settings page where they can enable the following option for your app
To determine whether your app has been granted the MANAGE_EXTERNAL_STORAGE permission, call Environment.isExternalStorageManager().
现在我可以通过 Environment.getExternalStoragePublicDirectory(path)
和 file.listFiles()
访问根文件夹“/storage/emulated/0/”
但是当我想访问 Downloads 文件夹时却无法访问,我查看了 SAF,但我必须使用类似 ACTIONS 的方法,我只想浏览文件夹,然后我查看了 MediaStore,但是有不是我如何在这里使用它的明确示例,因为我正在尝试获取文件但是 cursor.moveToNext()
或 cursor.moveToFirst()
returns false
这是我用过的代码
val projectionDownloads = arrayOf(
MediaStore.Downloads._ID,
MediaStore.Downloads.DISPLAY_NAME,
)
val selectionDownloads = ""
val selectionArgsDownloads = emptyArray<String>()
val sortOrderDownloads = "${MediaStore.Downloads.DISPLAY_NAME} ASC"
context.applicationContext.contentResolver.query(
MediaStore.Downloads.EXTERNAL_CONTENT_URI,
projectionDownloads,
selectionDownloads,
selectionArgsDownloads,
sortOrderDownloads
)?.use { cursor ->
Log.i("SeeMedia", "we got cursor! $cursor")
val idColumn = cursor.getColumnIndex(MediaStore.Images.ImageColumns._ID)
val nameColumn = cursor.getColumnIndex(MediaStore.Files.FileColumns.DISPLAY_NAME)
while (cursor.moveToNext()) { //Here return false
Log.i("SeeMedia", "Move to next!")
val id = cursor.getLong(idColumn)
val name = cursor.getString(nameColumn)
Log.i("SeeMedia", "ID = $id AND NAME= $name")
}
}
我的应用程序包含 2 个权限:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
之后我想知道3个问题:
问题 1:我需要其他权限才能读取文件吗?
问题 2:我在此 MediaStore 查询中遗漏了什么?为什么不给我下载文件?
问题3:如果我想查询其他未知的files/directories,比如Downloads里面的一个文件夹里面还有另外一个文件夹等等怎么办? "Downloads/Folder1/Folder2" 我想我应该用MediaStore.Files,对吧?那么访问这些文件的URI如何呢?
编辑 1:
SDK 29 = Android 10
SDK 30 = Android 11
我想要查询的只是文件,没有图像,没有音频只是文件,无论它来自什么,所以例如路径“/”是根将 return 目录列表:
-铃声
-音乐
-DCIM
-下载
-文档
很好,它适用于 Environment.getExternalStorageDirectory 和权限 MANAGE_EXTERNAL_STORAGE。
但后来我想访问其中一个目录,但它是空的,例如“DCIM”(我知道它包含一些图片)并且 <= 28 它通过以下方式检索我的图片:
- Environment.getExternalStorageDirectory()/DCIM
但是在 >= 29 中它 return 是空的,我怎样才能使用经典方法或 MediaStore 访问这些文件?
如果我有什么不对的地方,请告诉我,因为现在我的脑袋里塞满了很多混杂的东西,因为我看了很多视频、文档和问题,我只是想了解一些临界点。
这是一个简单的代码,我终于可以用 MediaStore 查询根“/”,以防你想看到它,但不知道如何查询其他路径并检索它们的文件:
val projection = arrayOf(
MediaStore.Files.FileColumns.DISPLAY_NAME
)
context.applicationContext.contentResolver.query(
MediaStore.Files.getContentUri("external"),
projection,
null,
null,
null
)?.use { cursor ->
Log.i("SeeMedia", "we got cursor! $cursor")
val nameColumn =
cursor.getColumnIndex(MediaStore.Files.FileColumns.DISPLAY_NAME)
while(cursor.moveToNext()){
Log.i("SeeMedia", "Move to next!")
val name = cursor.getString(nameColumn)
Log.i("SeeMedia", "Name = $name")
}
}
回答您的一些问题:
Do I need other permissions for the purpose of reading files?
不,如上文所述here,您已获得所有可能的文件相关权限。
What am I missing on this MediaStore query? Why it doesn't provide me the files of download?
下载是一种特例。 Here 在该部分的最底部它说
In particular, if your app wants to access a file within the
MediaStore.Downloads collection that your app didn't create, you must
use the Storage Access Framework.
甚至使用 SAF,您 will not be able to access 下载目录中的所有文件。所以你可以访问用户选择的单个文件,但你不能列出目录的内容。
一般来说,如其所述here, having the MANAGE_EXTERNAL_STORAGE
permission granted, you can access all non-restricted files using both MediaStore
and file paths。两种方式应该给出相同的结果。
我期待构建一个文件资源管理器应用程序,但我对我发现的内容感到震惊我确实需要完整的 read/write 权限和对所有内容的访问权限。
正如他们所说 here:
Declare the MANAGE_EXTERNAL_STORAGE permission in the manifest.
Use the ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION intent action to direct users to a system settings page where they can enable the following option for your app
To determine whether your app has been granted the MANAGE_EXTERNAL_STORAGE permission, call Environment.isExternalStorageManager().
现在我可以通过 Environment.getExternalStoragePublicDirectory(path)
和 file.listFiles()
但是当我想访问 Downloads 文件夹时却无法访问,我查看了 SAF,但我必须使用类似 ACTIONS 的方法,我只想浏览文件夹,然后我查看了 MediaStore,但是有不是我如何在这里使用它的明确示例,因为我正在尝试获取文件但是 cursor.moveToNext()
或 cursor.moveToFirst()
returns false
这是我用过的代码
val projectionDownloads = arrayOf(
MediaStore.Downloads._ID,
MediaStore.Downloads.DISPLAY_NAME,
)
val selectionDownloads = ""
val selectionArgsDownloads = emptyArray<String>()
val sortOrderDownloads = "${MediaStore.Downloads.DISPLAY_NAME} ASC"
context.applicationContext.contentResolver.query(
MediaStore.Downloads.EXTERNAL_CONTENT_URI,
projectionDownloads,
selectionDownloads,
selectionArgsDownloads,
sortOrderDownloads
)?.use { cursor ->
Log.i("SeeMedia", "we got cursor! $cursor")
val idColumn = cursor.getColumnIndex(MediaStore.Images.ImageColumns._ID)
val nameColumn = cursor.getColumnIndex(MediaStore.Files.FileColumns.DISPLAY_NAME)
while (cursor.moveToNext()) { //Here return false
Log.i("SeeMedia", "Move to next!")
val id = cursor.getLong(idColumn)
val name = cursor.getString(nameColumn)
Log.i("SeeMedia", "ID = $id AND NAME= $name")
}
}
我的应用程序包含 2 个权限:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
之后我想知道3个问题:
问题 1:我需要其他权限才能读取文件吗?
问题 2:我在此 MediaStore 查询中遗漏了什么?为什么不给我下载文件?
问题3:如果我想查询其他未知的files/directories,比如Downloads里面的一个文件夹里面还有另外一个文件夹等等怎么办? "Downloads/Folder1/Folder2" 我想我应该用MediaStore.Files,对吧?那么访问这些文件的URI如何呢?
编辑 1: SDK 29 = Android 10
SDK 30 = Android 11
我想要查询的只是文件,没有图像,没有音频只是文件,无论它来自什么,所以例如路径“/”是根将 return 目录列表: -铃声 -音乐 -DCIM -下载 -文档
很好,它适用于 Environment.getExternalStorageDirectory 和权限 MANAGE_EXTERNAL_STORAGE。
但后来我想访问其中一个目录,但它是空的,例如“DCIM”(我知道它包含一些图片)并且 <= 28 它通过以下方式检索我的图片:
- Environment.getExternalStorageDirectory()/DCIM
但是在 >= 29 中它 return 是空的,我怎样才能使用经典方法或 MediaStore 访问这些文件?
如果我有什么不对的地方,请告诉我,因为现在我的脑袋里塞满了很多混杂的东西,因为我看了很多视频、文档和问题,我只是想了解一些临界点。
这是一个简单的代码,我终于可以用 MediaStore 查询根“/”,以防你想看到它,但不知道如何查询其他路径并检索它们的文件:
val projection = arrayOf(
MediaStore.Files.FileColumns.DISPLAY_NAME
)
context.applicationContext.contentResolver.query(
MediaStore.Files.getContentUri("external"),
projection,
null,
null,
null
)?.use { cursor ->
Log.i("SeeMedia", "we got cursor! $cursor")
val nameColumn =
cursor.getColumnIndex(MediaStore.Files.FileColumns.DISPLAY_NAME)
while(cursor.moveToNext()){
Log.i("SeeMedia", "Move to next!")
val name = cursor.getString(nameColumn)
Log.i("SeeMedia", "Name = $name")
}
}
回答您的一些问题:
Do I need other permissions for the purpose of reading files?
不,如上文所述here,您已获得所有可能的文件相关权限。
What am I missing on this MediaStore query? Why it doesn't provide me the files of download?
下载是一种特例。 Here 在该部分的最底部它说
In particular, if your app wants to access a file within the MediaStore.Downloads collection that your app didn't create, you must use the Storage Access Framework.
甚至使用 SAF,您 will not be able to access 下载目录中的所有文件。所以你可以访问用户选择的单个文件,但你不能列出目录的内容。
一般来说,如其所述here, having the MANAGE_EXTERNAL_STORAGE
permission granted, you can access all non-restricted files using both MediaStore
and file paths。两种方式应该给出相同的结果。