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

> Tao directory ben trong workspace bang recursive folder creation, bao gom missing parent directories.

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

  ## Đối số

  <ParamField path={"path"} type={"string"} required>
    Directory path duoc resolve ben trong workspace sau separator normalization va workspace-boundary checks. Empty, invalid hoac outside-workspace paths gay error truoc khi thu tao.
  </ParamField>

  ## Ví dụ

  Tao workspace directory va missing parent directories.

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

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