Creates the specified MS-DOS subdirectory.
MKDIR
directory_name
directory_name is a string expression that specifies the subdirectory to create.
ON ERROR GOTO CheckExists
MKDIR "TESTDIR"
PRINT "Directory TESTDIR created"
Done:
END
CheckExists:
IF ERR = 75 THEN
PRINT "Directory TESTDIR already exists"
RESUME Done
END IF
ON ERROR GOTO 0