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

> Crea un directory dentro del workspace con recursive folder creation, incluidos missing parent directories.

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

  ## Argumentos

  <ParamField path={"path"} type={"string"} required>
    Directory path resuelto dentro del workspace despues de separator normalization y workspace-boundary checks. Empty, invalid u outside-workspace paths producen error antes de intentar crear.
  </ParamField>

  ## Ejemplo

  Crea un workspace directory y cualquier missing parent directories.

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

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