The problem is that I’ve been reading the documentation and various posts on this forum and I can’t find any function or library that allows me to read and write a data structure in a file.
Just make “ToString” and “FromString” functions in your structure and save using something like the FPlatformFileManager.
Those are just wrappers to allow file IO on all platforms - if you’re just using windows or another OS you can of course just write your own routines using that platforms IO routines (eg iostream).
Hi
That’s great to be able to use standard C++.
I thought that could cause problems.
This has happened to me using some libraries.
The code is just to help while I program the epic online services.
After that the code will not be necessary.
So I think the wrapper will not be necessary in this case.
Thank you very much for your help!!
Now I know what to do next time I have a similar problem!!
Very appreciated!!