> ## 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 を使い、missing parent directories を含めて workspace 内に directory を作成します。

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

  ## 引数

  <ParamField path={"path"} type={"string"} required>
    separator normalization と workspace-boundary checks の後、workspace 内で解決される directory path。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>
