我为Android应用程序编写了一个方法:
public void doMethod()throws IOException{
Log.d("STORAGE", Environment.getExternalStorageDirectory().toString());
File file = new File(context.getExternalFilesDir("NOTES")+"TEST.txt");
Log.d("FILE", file.createNewFile()+"");
FileOutputStream os = new FileOutputStream(file);
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(os));
bw.write("HELLO WORLD");
bw.close();
Log.d("WRITE", "DONE");
}
尽管执行了此代码(从活动中调用此方法),但在打开TEST.txt
目录时,我无法在手机的文件管理器中看到文件NOTES
。
正在创建名为NOTES
的目录,没有任何问题。我的TEST.txt
文件在哪里?