--- sidebar_position: 5 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Create folder Creates an empty directory on the drive `Function CreateFolder(Val Token, Val Name, Val Parent = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Token | --token | String | ✔ | Token | | Name | --title | String | ✔ | Folder name | | Parent | --catalog | String | ✖ | Parent | Returns: Map Of KeyAndValue - serialized JSON response from Google
```bsl title="1C:Enterprise/OneScript code example" Token = "ya29.a0ARW5m7702-Ib_bOq69krqD5iUx89SC2lxGPxRJoBjqvSBqE7uKghOyAjwrL7ebNf6xqPzwD4wQfZlFvBrb7QsWlw5PGW_SvkFr57Y8Js..."; Directory = "11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y"; Name = "TestFolder"; Result = OPI_GoogleDrive.CreateFolder(Token, Name, Directory); ``` ```bash oint gdrive CreateFolder \ --token "***" \ --title "TestFolder" ``` ```batch oint gdrive CreateFolder ^ --token "***" ^ --title "TestFolder" ``` ```json title="Result" { "kind": "drive#file", "id": "1grSYVEN_m8PfHLj5ZrpDyMqDEtbF00E9", "name": "TestFolder", "mimeType": "application/vnd.google-apps.folder" } ```