Updated mkdir (markdown)

Pk11
2022-05-07 18:01:55 -05:00
parent 4d85f00f16
commit 8d233583f4
+3 -1
@@ -1,11 +1,13 @@
The `mkdir` function has 1 parameter. It makes a directory.
`directory` -> The Directory which should be created. Don't Forget a `/` at the end, because it will also create all Sub Folders.
`required` -> If true, the script will error if the folder doesn't exist, if false it will silently continue
Example:
```json
{
"type": "mkdir",
"directory": "sdmc:/3ds/TestFolder/Test1/"
"directory": "sdmc:/3ds/TestFolder/Test1/",
"required": false
}
```