无法在Sdcard android中创建文件夹

时间:2015-08-29 08:56:56

标签: java android

我的申请中有这个问题。我想在模拟器SD卡中创建一个文件夹,但它没有用,我不知道为什么!我试过mkdir和mkdirs。我向Manifest添加了WRITE_EXTERNAL_STORAGE权限。我尝试使用MediaScannerConnection并没有工作!我在google上搜索了很多,并尝试过很多实现但没有改变!请告诉我,这可能是什么问题!

hier是我的代码:

    public void createDirIfNotExists() {


    File folder = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/cdp");
    boolean success = true;
    if (!folder.exists()) {
        success = folder.mkdirs();
    }
    if (success) {

        Log.e("Folder: ", "folder created!!");
    } else {
        Log.e("Folder Error: ", "folder cannot be created!!");
    }
}

我的清单看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.aboussof.myapplication" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
    </activity>

    <activity android:name=".Test">

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

    </activity>
</application>

所以我尝试创建文件夹:

    @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);
    mProgressDialog = new ProgressDialog(Test.this);
    mProgressDialog.setMessage("A message");
    mProgressDialog.setIndeterminate(true);
    mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    mProgressDialog.setCancelable(true);

    // execute this when the downloader must be fired
    final DownloadTask downloadTask = new DownloadTask(Test.this);
    createDirIfNotExists();
    downloadTask.execute("http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_5mb.mp4");

    mProgressDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
        @Override
        public void onCancel(DialogInterface dialog) {
            downloadTask.cancel(true);
        }
    });

}
谢谢你。

3 个答案:

答案 0 :(得分:0)

替换

File folder = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/cdp");

File folder = new File(Environment.getExternalStorageDirectory() + "/", "cdp");

答案 1 :(得分:0)

你解决了问题了吗?

我使用你的方法进行微小的改动
File folder = new File(Environment.getExternalStorageDirectory(), "cdp");

结果如下图所示:

enter image description here

enter image description here

我的AVD配置如下:

enter image description here

答案 2 :(得分:0)

我遇到了同样的问题 - file.mkdirs()在android模拟器API 23上返回false。所有配置都是根据BNK的答案设置的。 尝试将API更改为19 - 它对我有用。看起来像怪异的模拟器/ android版本问题。