This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
FolderExists
Hello World
Checks if a given folder exits or not.
app.FolderExists(
folder
) →
Boolean
See Also:
MakeFolder
,
CopyFolder
,
RenameFolder
Example - Example
click to expand contents
function
OnStart
(
)
{
if
(
app
.
FolderExists
(
"myFolder"
)
)
app
.
ShowPopup
(
"myFolder exists!"
)
;
else
app
.
ShowPopup
(
"myFolder does not exist!"
)
;
}
Copy
Copy All
Run
String:
path to folder (
“/absolute/...”
or
“relative/...”
)
loading