我需要列出设备上的所有.pfx文件。
我尝试过使用以下代码:
String selectionMimeType =
MediaStore.Files.FileColumns.MIME_TYPE + "=?";
String mimeType = "application/x-pkcs12";
String[] selectionArgs = new String[]{ mimeType };
Cursor cursor = cr.query(MediaStore.Files.getContentUri("external"), null, selectionMimeType, selectionArgs, null);
cursor.moveToFirst();
while (cursor.moveToNext()) {
String title = cursor.getString(cursor.getColumnIndex(MediaStore.Files.FileColumns.TITLE));
Log.i("Titulo",title);
}
但它不起作用。 如果我将mimetype更改为" application / pdf",则会列出.pdf文件。
为什么它不能用于.pfx文件?有人能帮助我吗?