我想在我的应用程序的内存中创建一个文件夹来存储音频文件,然后检查是否存在进行某些操作。 如何制作这个文件,在哪个路径,以及如何再次检索这些文件?
答案 0 :(得分:12)
File mydir = context.getDir("mydir", Context.MODE_PRIVATE); //Creating an internal dir;
File fileWithinMyDir = new File(mydir, "myfile"); //Getting a file within the dir.
FileOutputStream out = new FileOutputStream(fileWithinMyDir); //Use the stream as usual to write into the file
从内部删除文件:
if (new File("path/to/file").delete()) {
// Deleted
} else {
// Not deleted
}