> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# makefolder

> Erstellt ein directory innerhalb des workspace mit recursive folder creation, inklusive missing parent directories.

<div className="real-function-page">
  ```lua theme={null}
  makefolder(path: string)
  ```

  ## Argumente

  <ParamField path={"path"} type={"string"} required>
    Directory path, der nach separator normalization und workspace-boundary checks im workspace aufgeloest wird. Empty, invalid oder outside-workspace paths fuehren zu einem error, bevor die Erstellung versucht wird.
  </ParamField>

  ## Beispiel

  Erstelle ein workspace directory und alle missing parent directories.

  ```lua theme={null}
  local path = "examples/generated/nested"

  makefolder(path)
  print(isfolder(path))
  ```
</div>
