# Create Directory

Launch stage: GA

`PUT /api/2.0/fs/directories{directory_path}`

Creates an empty directory. If necessary, also creates any parent directories of the
 new, empty directory (like the shell command `mkdir -p`). If called on an existing
 directory, returns a success response; this method is idempotent (it will succeed if the directory already
 exists).

API scopes: files

## Path parameters

- `directory_path` (string, optional)
  The absolute path of a directory.

## Response

```json
{}
```

