パス mnt/sdcard/foldername に書き込んでいます。エラーは発生せず、ファイルは書き込まれますが、電話の内部ストレージを参照すると、フォルダーが見つかりません。フォルダはどこにありますか? ギャラクシーネクサスを持っていますか?
コードはここにあります:
File sdCard = Environment.getExternalStorageDirectory();
File directory = new File (sdCard.getAbsolutePath() + "/statReporter/");
directory.mkdirs();
Log.d("Tag", directory.toString());
//Path and name of XML file
File file = new File(directory, appendTimeStamp("phoneNum") + ".csv");
FileOutputStream fOut = new FileOutputStream(file);
OutputStreamWriter osw = new OutputStreamWriter(fOut);
//Write to CSV File
osw.write(message);
osw.write(',');
//Flush and close OutPutStreamWriter and close FileOutputStream
osw.flush();
osw.close();
fOut.close();
Log.d("File Logger:", "File write successfully!");
Windows Computer\Galaxy Nexus\Internal Storage で見つけることができませんが、他のすべてのフォルダーが表示されます。
OI File Managaer というアプリを使用し、電話でフォルダーとファイルを表示できますが、Windows OS で表示するにはどうすればよいですか?