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

> recursive folder creation ile workspace icinde directory olusturur, missing parent directories dahil.

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

  ## Argümanlar

  <ParamField path={"path"} type={"string"} required>
    Separator normalization ve workspace-boundary checks sonrasinda workspace icinde cozumlenen directory path. Empty, invalid veya outside-workspace paths, olusturma denenmeden once error olusturur.
  </ParamField>

  ## Örnek

  Bir workspace directory ve missing parent directories olusturun.

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

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