我在做一个文件选择窗口时遇到了一个问题,即我无法获取应用程序文件夹(com.example.kos)之外的文件,即使我的应用程序可以访问文件
显示
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.kos">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:largeHeap="true"
android:fullBackupContent="@xml/backup_descriptor"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name=".Times"
android:enabled="true"
android:exported="false"/>
<activity
android:name=".MainActivity"
android:configChanges="uiMode"
android:screenOrientation="fullSensor"
android:theme="@style/AppTheme.Launcher">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
获取权限
if(ContextCompat.checkSelfPermission(context, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED && ContextCompat.checkSelfPermission(context, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED && ContextCompat.checkSelfPermission(context, Manifest.permission.FOREGROUND_SERVICE) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions((Activity) context,new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.FOREGROUND_SERVICE},REQUEST_CODE_FOLDER_CONF);
}
android-10(api 29)
upd:获取应用程序文件夹的路径
File currentPath = new File(context.getExternalFilesDir(null).getAbsolutePath() + "/backups");
调试和listfiles()方法显示文件夹不是空的
但是,如果指定与我的应用程序无关的任何其他文件夹,例如下载文件夹,它会立即变为空,尽管有文件
currentPath = Environment.getExternalStoragePublicDirectory(DIRECTORY_DOWNLOADS);
1条答案
按热度按时间n3schb8v1#
android 10带有范围存储。这就是为什么你在app文件夹外看不到任何文件的原因。您可以选择退出作用域存储。只需将下面的属性添加到androidmanifest.xml中。
这是一个只与android10兼容的解决方案。对于android 11,您需要使用saf访问文件。如果你的应用程序是针对android 11的,那么也可以查看saf的这些变化。