1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-25 00:46:45 +02:00
Files
OpenIntegrations/docs/en/md/Integration_proxy_methods/Project-setup/Create-project.mdx

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-02-01 00:01:56 +03:00
Path = "C:\Users\Administrator\AppData\Local\Temp\v8_80F8_17.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
```