MkDir Statement


MkDir path

Creates a new directory.

The parameter path is a string expression that must contain fewer than 128 characters.

Example:

    Sub Main

        Dim DST As String

        DST = "t1"

        mkdir DST

        mkdir "t2"

    End Sub


Related Topic:

ChDir Statement

CurDir Function

RmDir Statement