I understand I can open a file in assets folder like this.
InputStream is = ((Activity) mView).getAssets().open("some.txt");
But what should I do to save back to the same file? I mean how do I get OutputStream of the same file?
|
|
|
As per my knowledge you can't because For more info look at this discussion Writing to file Assets folder And this SO question How to write files to assets folder or raw folder in android? |
|||