我無法在外部存儲文件夾中創建目錄。我創建了一個新項目,修改了清單並添加了代碼,如下所示。任何幫助將不勝感激。我更新了我的帖子,以包含下面提供的代碼不起作用。我唯一能想到的就是模擬器是問題所在。我正在運行Nexis API 32 x64。無法創建外部目錄
AndroidManifest.xml中
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.us.foobar"
xmlns:android="http://schemas.android.com/apk/res/android">
<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=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
來源:
public void mkdir() throws Exception
{
String root = Environment.getExternalStorageDirectory().getAbsolutePath();
String dir = root + "/Foobar";
File file = new File(dir);
if (!file.exists())
{
if (!file.mkdirs())
{
throw new Exception("Unable to create application data directory.\r\n\r\nDirectory: " + dir);
}
}
}
「公共MainActivity()拋出Exception'm ???最好刪除它。 onCreate()在哪裏?這甚至編譯?你有什麼錯誤? – greenapps
你不回答我的問題。你爲什麼不認真?你的代碼沒有意義。 – greenapps