MkDir Instruction

Syntax:

MkDir Name$

Group:File

Description:
Make directory Name$.

Parameter Description

Name$ This string value is the path and name of the directory. A path relative to the current directory can be used.

See Also:RmDir.

Example:

Sub Main
  MkDir "C:\WWTEMP"
End
Sub