--- sidebar_position: 1 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Create project Creates a project file at the selected path `Function CreateProject(Val Path) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Path | --path | String | ✔ | Project filepath | Returns: Structure Of KeyAndValue - Creation result
```bsl title="1C:Enterprise/OneScript code example" Path = "C:\Users\Administrator\AppData\Local\Temp\v8_8CEA_26.oint"; Result = OPI_IntegrationProxy.CreateProject(Path); ```