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

> Membuat directory di dalam workspace dengan recursive folder creation, termasuk missing parent directories.

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

  ## Argumen

  <ParamField path={"path"} type={"string"} required>
    Directory path yang diselesaikan di dalam workspace setelah separator normalization dan workspace-boundary checks. Empty, invalid, atau outside-workspace paths menghasilkan error sebelum pembuatan dicoba.
  </ParamField>

  ## Contoh

  Buat workspace directory dan missing parent directories.

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

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