コードは次のとおりです。
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());
}
私がこれらのdirを作るので、2番目は決して起こらない、そしてそれはそうあるべきです。私のコードの何が問題になっていますか?ところで、私がこのプログラムを実行するたびに、それは常に最初の状態になります。