Table of Contents

MakeFolder

(Information and examples taken from the DroidScript documentation)

Description

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" );
}