gpt4 book ai didi

android - 在内部存储器中创建文件夹以保存文件并在以后检索它们

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:03:32 24 4
gpt4 key购买 nike

我想在我的应用程序的内存中创建一个文件夹来存储音频文件,然后检查是否存在以进行一些操作。如何制作这个文件夹,在什么路径,如何再次检索这些文件?

最佳答案

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
}

关于android - 在内部存储器中创建文件夹以保存文件并在以后检索它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8493642/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com