This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
MakeFolder
Hello World
Creates a new folder in the local filesystem recursively.
app.MakeFolder(
folder
)
See Also:
FolderExists
Example - Create folder
click to expand contents
function
OnStart
(
)
{
app
.
MakeFolder
(
"myFolder"
)
;
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