自动创建和删除资源文件夹中的文件

SRI*_*RAO 5 android android-assets android-file

可能重复:
我们如何在android中运行时从assets文件夹中删除文件?

是否可以在运行应用程序时在assets文件夹中创建文件,并在应用程序停止时删除相同的文件.

Raj*_*mar 9

对于资产,您只能读取文件权限.因此,您无法在assets文件夹中创建/删除文件.以下是应用于assets文件夹的限制.

1)  Only Read Permission available for this folder.

2)  File size for placing inside the assets limit to 10 MB.If you want to place     
    then the larger file should be placed as chunk.

3)  You can use this folder, for placing files like database file, font file etc...
Run Code Online (Sandbox Code Playgroud)

不要与它抗争.这不是使用assets文件夹处理文件的正确方法.您可以使用适合创建和删除文件的SD卡

您可以使用标准方法通过app将文件放入SD卡,

 Environment.getExternalStoragePublicDirectory("filetype");
Run Code Online (Sandbox Code Playgroud)