The title might be slightly confusing, sorry about that, I just don’t know how to condense this into one question.
What I’m trying to do is that I have data files in my assets folder (basically baked data) and I want them to be in the build, but I want the user to be able to overwrite (rebake) these files if they choose to, directly from the app. Is it possible to write to the contents of the assets folder after the app has been built? Or should I work around the problem?
One way I thought about working around it is to copy these files into the persistentDataPath on the first startup, and read from there when needed. I would like to avoid having to bake these files on the first startup, because it can take quite a while.