Quick Links: Download Gideros Studio | Gideros Documentation | Gideros community chat | DONATE
Where does dataSaver put files on Mac? — Gideros Forum

Where does dataSaver put files on Mac?

bigtunacanbigtunacan Member
edited March 2016 in General questions
I'm testing out my application on my Mac and using dataSaver to save/load data. The code runs without error, but when I look in the directory I am unable to find my file created anywhere.

Currently I'm just using the sample off appcodingeasy to test this.
local someValue = 42
dataSaver.saveValue("somevalue", somevalue)
 
local mydata = {}
mydata.somestring = "mystring"
mydata.somevalue = 42
dataSaver.save("|D|mydata", mydata)

Comments

Sign In or Register to comment.