saving data in File.Assets Internal

roarnold

Active Member
Licensed User
Longtime User
afternoon,

I have variables that I would like to save and then retrieve at some point. I do not care to do an array as I would have to repeat as operation.

So question: can I save the 11 variables as a group, individually, or some other way so that I can recall them?

Thanks,
Ron
 

NJDude

Expert
Licensed User
Longtime User
You cannot save anything to the FileAssets folder because it's read only.

What you can do is to save those variables in a Map, or a plain text file, you could use the File.DirInternal directory to do that.
 
Upvote 0
Top