发出whit getExternalFilesDir问题,无法在DDMS中找到我的目录

时间:2016-08-10 01:04:50

标签: android android-external-storage

我写了以下代码:

String check=Environment.getExternalStorageState();
    if (check.equals(Environment.MEDIA_MOUNTED)){
        Log.d("exito","exito");
    }
    File file= new File(context.getExternalFilesDir(null)+"/Terrible","otracosa");
    file.mkdir();
    Log.d("cosaboleano",Boolean.toString(file.exists()));
    if (file.exists()) {
        Log.d("cosa2", "tará!!!");
    }

我添加了此权限以显示:

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

从Logs获得此输出:

08-09 17:55:03.575 29236-29236/com.example.ruelas.downloadpractice D/exito: exito
08-09 17:55:03.578 29236-29236/com.example.ruelas.downloadpractice D/cosaboleano: true
08-09 17:55:03.578 29236-29236/com.example.ruelas.downloadpractice D/cosa2: tará!!!

在mnt / sdcard中查找我的文件,没有任何内容: My Android Picture

我在哪里可以查找据称创建的文件?我是否必须创建一个附加的虚拟SD卡?

1 个答案:

答案 0 :(得分:3)

  

模拟 - &gt; 0 - &gt;你会在那里找到你所有的SD卡数据