1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-21 00:29:52 +02:00
Files
OpenIntegrations/docs/en/md/Integration_proxy_methods/Project-setup/Create-project.mdx
Vitaly the Alpaca (bot) 448c3584c4 Main build (Jenkins)
2025-01-29 21:00:33 +03:00

37 lines
605 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_814A_21.oint";
Result = OPI_IntegrationProxy.CreateProject(Path);
```