49
 import java.io.File;  
    File folder = new File(Environment.getExternalStorageDirectory() + "/TollCulator");
    boolean success = true;
    if (!folder.exists()) {
        //Toast.makeText(MainActivity.this, "Directory Does Not Exist, Create It", Toast.LENGTH_SHORT).show();
        success = folder.mkdir();
    }
    if (success) {
        //Toast.makeText(MainActivity.this, "Directory Created", Toast.LENGTH_SHORT).show();
    } else {
        //Toast.makeText(MainActivity.this, "Failed - Error", Toast.LENGTH_SHORT).show();
    }

如果它不存在,上面应该在我的 SD 卡中创建一个文件夹,如果存在则不做任何事情。虽然 toast 根据条件工作,但是当它不存在时它不会创建目录。知道如何解决吗?

我的Manifest样子是这样的:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test.testing"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <uses-sdk
        android:minSdkVersion="6"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.test.testing.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

更新:我更新了我的清单以及更新了我的代码,但它仍然没有在我的 SD 卡中创建文件夹。请记住,我正在使用 Eclipse 并将应用程序直接运行到我的手机 (GNex VZW) 而不是使用 AVD。

4

2 回答 2

149

在 中添加此权限Manifest
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

File folder = new File(Environment.getExternalStorageDirectory() + 
                             File.separator + "TollCulator");
boolean success = true;
if (!folder.exists()) {
    success = folder.mkdirs();
}
if (success) {
    // Do something on success
} else {
    // Do something else on failure 
}

当你运行应用程序时也去 DDMS->文件资源管理器->mnt 文件夹->sdcard 文件夹->toll-creation 文件夹

于 2013-07-22T18:43:29.703 回答
20

如果您尝试在 sdcard 的根目录上创建多个文件夹,例如。Environment.getExternalStorageDirectory() + "/Example/Ex App/"

那么folder.mkdir()你会使用folder.mkdirs()

我过去犯过这个错误,我花了很长时间才弄清楚。

于 2013-07-22T18:53:41.517 回答