1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-25 21:39:21 +02:00
Vitaly the Alpaca (bot) 602d0cecea Main build (Jenkins)
2025-02-05 12:40:59 +03:00

37 lines
604 B
Plaintext
Vendored

---
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
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Path = "C:\Users\Administrator\AppData\Local\Temp\v8_9B5_45.oint";
Result = OPI_IntegrationProxy.CreateProject(Path);
```