On Gideros documentation it is stated that:
"Resource directory is read-only and you should not try to write any files there."
I try to create game data files (.json) by using Gideros, It contains point positions, etc.
Is there a way to obtain created files from 'document' or 'temporary' directories? (I will copy that files to resource folder)
Or is there a way to write file on resource directory.
Thanks
Comments
Of course you can add it as resource with the project and copy it to the documents directory like that:
or if you want to view, what is in your documents directory, on PC or Mac that can be done easily:
on Windows XP: C:\Documents and Settings\[YOUR USER NAME]\Local Settings\Temp\gideros\[YOUR APP NAME]
on Windows Vista and Windows 7: C:\Users\[YOUR USER NAME]\AppData\Local\Temp\gideros\[YOUR APP NAME]
on Mac OS X: $TMPDIR/gideros/[YOUR APP NAME]
"C:\Users\[YOUR USER NAME]\AppData\Local\Temp\gideros\[YOUR APP NAME]"
the thing I am searching.
The idea is, I am try to create a project in which I will create game level files.
Thanks a lot.
Likes: ar2rsawseen