mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-25 21:39:21 +02:00
37 lines
604 B
Plaintext
Vendored
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);
|
|
```
|
|
|
|
|
|
|
|
|
|
|