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 的手机内存中创建目录 .. 如何在 android 模拟器而不是 SDCard 的手机内存中创建目录
以下代码可以帮助您在手机内存中创建目录:
File f = new File(getFilesDir()+"/abc"); if(!f.isDirectory()) Log.d("dir", f.mkdir()? "Directory created": "Directory not created");
实际上getFilesDir()返回内部存储器file文件夹的路径,并允许您在其中创建更多文件和/或目录。
file