这是代码:
String folderPath = Environment.getExternalStorageDirectory() + "/AllAroundMe/Images";
File file = new File(folderPath);
if(!file.exists())
{
if(file.mkdirs());
Log.d("MyTag","Created folders succefully");
}
if(file.exists())
{
Log.d("MyTag", "folders exists: " + file.getAbsolutePath());
}
第二个如果永远不会发生,它应该发生,因为我制作了这些目录。我的代码有什么问题?顺便说一句,每次我运行这个程序时,它总是在第一个条件下运行。