mkdir

This command creates a subdirectory.

Syntax

mkdir local:///subdirectory

Parameters

local:///subdirectory
The subdirectory to create in the local: directory.

Guidelines

The mkdir command creates subdirectories in the local: directory on the DataPower® appliance. You can create subdirectories for application-specific files such as style sheets and schemas.

Use the rmdir command to delete subdirectories.

Examples

  • Create the stylesheets subdirectory of the local: directory.
    # mkdir local:///stylesheets
    Directory 'local:///stylesheets' successfully created.
    #
  • Create the C-1 subdirectory in the stylesheets subdirectory of the local: directory.
    # mkdir local:///stylesheets/C-1
    Directory 'local:///stylesheets/C-1' successfully created.
    #