2025-01-29 16:59:34 +03:00
|
|
|
---
|
|
|
|
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 |
|
|
|
|
|
|
|
|
|
2025-01-29 23:01:38 +03:00
|
|
|
Returns: Structure Of KeyAndValue - Creation result
|
2025-01-29 16:59:34 +03:00
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
2025-01-30 19:59:05 +03:00
|
|
|
Path = "C:\Users\Administrator\AppData\Local\Temp\v8_8CEA_26.oint";
|
2025-01-29 16:59:34 +03:00
|
|
|
|
2025-01-29 21:00:33 +03:00
|
|
|
Result = OPI_IntegrationProxy.CreateProject(Path);
|
2025-01-29 16:59:34 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|