Rexx - mkdir Command



This command is used to create a directory in the current working directory.

Syntax

mkdir dirname 

Parameters

  • dirname − The name of the new directory which needs to be created.

Return Value

None

Example

/* Main program */ 
mkdir Test

Output

When we run the above program, the directory called Test will be created in the working directory.

rexx_brexx.htm
Advertisements