2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 10
|
|
|
|
---
|
|
|
|
|
|
|
|
# Get description file
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*Function GetFileDescription() Export*
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
|
|
|
|
|
2024-06-06 14:33:52 +02:00
|
|
|
Returns: Map Of KeyAndValue - File description
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
|
|
|
|
|
|
Description = New Map;
|
|
|
|
Description.Insert("MIME", "image/jpeg"); // MIME-type uploading file
|
|
|
|
Description.Insert("Name", "New file.jpg"); // File name with extension
|
|
|
|
Description.Insert("Description", "This is a new file"); // File description
|
|
|
|
Description.Insert("Parent", "root"); // ID directory upload or "root" for upload in root
|
|
|
|
|
|
|
|
Return Description;
|
|
|
|
|
2024-06-05 12:35:05 +02:00
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint gdrive GetFileDescription
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|