Returns the path to a folder located in the apps private space which is normally not accessible by other apps or the user himself.
app.GetPrivateFolder(
name,
options? )
→
String: path to file or folder ( “/absolute/...” or “relative/...” )
See Also: GetAppPath, GetPath
Example - Show
function OnStart()
{
var path = app.GetPrivateFolder( "temp" );
app.Alert( path );
}
from native import app
def OnStart():
path = app.GetPrivateFolder( "temp" )
app.Alert( path )