QBasic 1.1: RMDIR Statement

Syntax

CHDIR pathname$
MKDIR pathname$
RMDIR pathname$
FILES [filespec$]

Description / Parameter(s)

pathname$ The path of the new default directory, subdirectory to create, or subdirectory to remove.
filespec$ A filename or path (may include a drive and DOS wildcard characters). If you don't specify a filespec$, FILES displays all files in the current directory.

Example

MKDIR "C:\TEMP\TEST" CHDIR "C:\TEMP" FILES RMDIR "TEST"