===== FolderExists ===== //(Information and examples taken from the DroidScript documentation)// ==== Description ==== The **FolderExists** method checks if a folder exists in internal or exernal file storage. exists = app.FolderExists( folderName ); See also [[built_in:file_exists|FileExists]], [[built_in:make_folder|MakeFolder]] ---- ==== Example ==== function OnStart() { exists = app.FolderExists( "/sdcard/IOIOScript" ); app.ShowPopup( exists ); }