1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-13 11:50:53 +02:00

37 lines
605 B
Plaintext
Raw Normal View History

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