===== 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 [[built_in:folder_exists|FolderExists]] ---- ==== Example ==== function OnStart() { app.MakeFolder( "/sdcard/Temp/MyStuff" ); }