Back

GetPrivateFolder

Hello World

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 ) → 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 );
}
    Copy     Copy All       Run      
string