Hello,
Here is what I found on saving a data file. How can I add lines to this on the next line?
Thanks
local saveData = "My app state data" local path = system.pathForFile( "myfile.txt", system.DocumentsDirectory ) local file = io.open( path, "w" ) file:write( saveData ) io.close( file ) file = nil