Skip to main content

Create folder

Creates an empty directory on the drive

Function CreateFolder(Val Token, Val Name, Val Parent = "") Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
Name--titleStringFolder name
Parent--catalogStringParent

Returns: Map Of KeyAndValue - serialized JSON response from Google


1C:Enterprise/OneScript code example
    Token     = "ya29.a0ARW5m7702-Ib_bOq69krqD5iUx89SC2lxGPxRJoBjqvSBqE7uKghOyAjwrL7ebNf6xqPzwD4wQfZlFvBrb7QsWlw5PGW_SvkFr57Y8Js...";
Directory = "11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y";
Name = "TestFolder";

Result = OPI_GoogleDrive.CreateFolder(Token, Name, Directory);
    oint gdrive CreateFolder \
--token "***" \
--title "TestFolder"
Result
{
"kind": "drive#file",
"id": "1grSYVEN_m8PfHLj5ZrpDyMqDEtbF00E9",
"name": "TestFolder",
"mimeType": "application/vnd.google-apps.folder"
}