Skip to content

Instantly share code, notes, and snippets.

@kengonakajima
Created January 18, 2012 09:10
Show Gist options
  • Save kengonakajima/1632100 to your computer and use it in GitHub Desktop.
Save kengonakajima/1632100 to your computer and use it in GitHub Desktop.
moai: exammple of ios cache file writing
if MOAIInputMgr.device.touch then
local path = MOAIEnvironment.getCacheDirectory() .. "/hogehoge.txt"
local f,msg = io.open(path, "wb")
if not f then
error("cannot open file:",msg)
end
f:write(body)
f:close()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment