1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-27 00:51:06 +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-01-31 19:55:08 +03:00
Path = "C:\Users\Administrator\AppData\Local\Temp\v8_85A2_1a.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
```