> ## 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

> Tworzy directory wewnatrz workspace przez recursive folder creation, wlacznie z missing parent directories.

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

  ## Argumenty

  <ParamField path={"path"} type={"string"} required>
    Directory path rozwiazywany wewnatrz workspace po separator normalization i workspace-boundary checks. Empty, invalid lub outside-workspace paths powoduja error przed proba utworzenia.
  </ParamField>

  ## Przykład

  Utworz workspace directory i missing parent directories.

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

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