Creates a new directory.
ret = MkDir (DirString)
| ret | Integer,output |
| 0 = OK | |
| Non zero = Error | |
| DirString | String, input |
| The string that contains the name of the directory to make. |
This is a PASSPORT command. This command is a Visual Basic command but is not implemented by VBScript.
Example
Sub
ZMain()
MkDir "C:\Temp"
End Sub