WriteFile

From OxeyeWiki

Jump to: navigation, search
DaisyMoon File Objects
The WriteFile class will create a binary file for writing.

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()

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox