Write file on hard disc (in Simulator)

Is it possible to bypass the app sandboxing when running the app in Simulator and manage to save a new file in the directory that main.lua resides? [import]uid: 7356 topic_id: 4153 reply_id: 304153[/import]

Yes

path="/pathfromuserhometoprojectdirectory/filename.txt"
local file = io.open( path, “r” )


[import]uid: 7356 topic_id: 4153 reply_id: 12893[/import]