Okay, so I have some xml documents (stored as txt cause I heard mobile has trouble with xml, but that’s a different question) that I intend to access and edit at runtime. I’ve learned that you can’t write to files in the resources folder, so that leaves me with a kinda dumb question: where should I put these files? I know that I should (probably) access them using Application.PersistantDataPath, but I wonder if I need to set up the folder before exporting. Or do I just need to do something along the lines of
WhateverTheLoadFunctionIs(Application.PersistantDataPath + filename + ".txt") ;
WhateverTheSaveFunctionIs(Application.PersistantDataPath + filename + ".txt", editedFile);
Follow up: would this require any changes across platforms?