我正在为我的应用程序创建一个文件浏览器,我似乎无法让程序识别内部存储中的任何文件。
我已输入Manifest的代码以获得许可:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
当我运行应用程序时,我知道根文件夹是:
/存储/模拟/ 0 /下载
这是下载文件夹等文件夹所在的位置。相反,当该路径上调用listFiles()时,它返回null。这是因为文件f不可读。我不知道为什么文件f不可读。
File f = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);;
f.setReadable(true);//does nothing with or without this line
Boolean test = f.canRead();//Returns false
File[] files = f.listFiles();
fileList.clear();
if(files != null)
{
for (File file : files)
{
fileList.add(file.getPath());
}
}
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="com.example.rnewquist.spektrumprogrammer"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Spektrum_Programmer">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>