Home→Forums→MonoBrick EV3 Firmware→Saving files→Reply To: Saving files
June 20, 2014 at 07:07
#4440
Simon Stochholm
Participant
[SOLVED]
It turned out that I had forgotten to serialize part of my classes.
In order to save files use this path:
private static string filePath = Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), “test.dat”);
And then just read and write bytes to and from this filePath
Follow