WriteFile
From OxeyeWiki
DaisyMoon File Objects |
---|
You create a file by calling the constructor WriteFile(location, mode). The location should be the file name (except for memory mode), and mode should be a string which is either "f" (file), "z" (compressed file) or "m" (write to memory).
Example
local path = daisy.getUserFolderPath("") local file = WriteFile(path .. filename, "f") file:writeInt(fileVersion) file:writeString(playerName) -- ... and so on ... file:close()