Back

OpenFile

OpenFile with other application.

  app.OpenFile( file, type, choose )

Example - Example



function OnStart()
{
     app.WriteFile( "/sdcard/test.txt", "Hello" );
     app.OpenFile( "/sdcard/test.txt", "text/plain", "Choose Editor" );
}
    Copy     Copy All       Run      

string: path to file or folder ( "/absolute/..." or "relative/..." )
unknown