Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AndroidのAndroid Emulatorで電話メモリにディレクトリを作成したい.. SDCardではなくAndroidエミュレータで電話メモリにディレクトリを作成する方法
次のコードは、電話機の内部メモリにディレクトリを作成するのに役立ちます。
File f = new File(getFilesDir()+"/abc"); if(!f.isDirectory()) Log.d("dir", f.mkdir()? "Directory created": "Directory not created");
実際にはgetFilesDir()は内部メモリのfileフォルダへのパスを返し、内部にさらにファイルやディレクトリを作成できるようにします。
file