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

> ينشئ directory داخل workspace باستخدام recursive folder creation، بما في ذلك missing parent directories.

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

  ## الوسائط

  <ParamField path={"path"} type={"string"} required>
    Directory path يتم حله داخل workspace بعد separator normalization وفحص workspace-boundary. Empty او invalid او outside-workspace paths تسبب error قبل محاولة الانشاء.
  </ParamField>

  ## مثال

  انشئ workspace directory واي missing parent directories.

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

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