Creates a file system directory/folder, including all the folders that are necessary to satisfy the path to the directory. This command doesn't fail, but returns false if it can't create the directory.
System
createDir "folderPath" |
Name | Type | Required | Comments |
---|---|---|---|
folderPath | string | yes | Path to the folder to create. Use forward slashes. |
None
boolean
Returns true if the directory was successfully created, or false if it wasn`t.
// Create a folder on your D: drive. The final
// folder will be called "Path"
createDir "D:/Some/Long/Folder/Path/";