如何制作这个folde,在哪个路径,以及如何再次检索这些文件?解决方法
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 – 在内部存储器中创建文件夹以保存文件并在以后检索它们全部内容,希望文章能够帮你解决android – 在内部存储器中创建文件夹以保存文件并在以后检索它们所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)