int_db = intSD +"Database1";
var extSD = app.GetExternalFolder() +"/App_name/";
ext_db = extSD +"Database2";
if (
app.LoadBoolean( "mem_G", true ) )
{
var
int_db2 = intSD +"Database2";
if (
app.FolderExists( int_db2 ) ) app.SaveBoolean( "mem_G",
false );
else if ( app.FolderExists( ext_db ) )
extSDexists = true;
else
{
app.MakeFolder( ext_db );
if ( app.FolderExists( int_db2 ) ) app.DeleteFolder( int_db2 ), app.SaveBoolean( "mem_G", false );
else if ( app.FolderExists( ext_db ) ) extSDexists = true;
}
}
I'm not sure whether they are Premium only.
There is certainly a sample app which is Premium only but I'm not sure about the methods.
Will do my best to find out.