Back

MakeFolder

The MakeFolder method creates a folder on the internal or exernal file storage. This method will create the complete folder path if necessary.

 app.MakeFolder( path );

See also FolderExists


Example

function OnStart()
{
  app.MakeFolder( "/sdcard/Temp/MyStuff" );
}
  Copy   Copy All    Run