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

> Cree un directory dans le workspace avec recursive folder creation, y compris les missing parent directories.

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

  ## Arguments

  <ParamField path={"path"} type={"string"} required>
    Directory path resolu dans le workspace apres separator normalization et workspace-boundary checks. Empty, invalid ou outside-workspace paths produisent une error avant la tentative de creation.
  </ParamField>

  ## Exemple

  Cree un workspace directory et les missing parent directories.

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

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