Back

GetPrivateFolder

GetPrivateFolder returns the full path to a hidden folder on the device internal storage, creating the folder if necessary. This folder will only be accessible from the app that created it.

app.GetPrivateFolder( name ) -> unknown

Example - Example



function OnStart()
{
    fldr = app.GetPrivateFolder( "MyStuff" );
    app.ShowPopup( fldr );
}
    Copy     Copy All       Run      

unknown