File dir = Environment.getExternalStorageDirectory();
if (dir.exists() && dir.isDirectory()) {
String exStoragePath = Environment.getExternalStorageDirectory().getAbsolutePath();
File appPath = new File(exStoragePath + "/mbrc/");
appPath.mkdirs();
String tempFilename = "tmp.wav";
String tempDestFile = appPath.getAbsolutePath() + "/" + tempFilename;
return tempDestFile;
}
Android 2.2 の HTC でこれを試してみましたが、ディレクトリは作成されず、ファイルも作成されません。Android 4を搭載したSAMSUNG S2でこれを試すと、動作します。
これが HTC と android 2.2 で動作しないのはなぜですか?