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