DirCreate
From AutoIt Wiki
Creates a directory/folder. Adapted from AutoIt docs.
Contents |
Syntax
DirCreate("path")
Parameters
| path | Path of the directory to be created. Trailing backslashes are not required. |
Return Value
Success: Returns 1.
Failure: Returns 0 if an error occurs.
All parent directories will also be created if they do not already exist.
Example
DirCreate("C:\Test1\Folder1\Folder2")