mkDir()

指定されたパス名からディレクトリーを作成する。

書式:
variable = mkDir( path )

例:
mkdir( "test" )
if direxists("test") then
    prints("dir test created")
else
    prints("dir test not created")
end if
waitKey

See also rmDir() command.