WriteFile writes a text file to internal or external file storage.
Example - Example
function OnStart()
{
app.WriteFile( "/sdcard/wftest.txt", "Hello", "Append" );
}
string - path to file or folder ( "/absolute/..." or "relative/..." )
string
string - "Append" or "ASCII"
unknown