uipath-cli
latest
false
- Visão geral
- Introdução
- Conceitos
- Using UiPath CLI
- Guias de instruções
- CI/CD recipes
- Referência de comando
- Visão geral
- Códigos de saída
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- criar projeto
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migração
- Reference & support
UiPath CLI user guide
Última atualização 7 de mai de 2026
uip df files manages blob attachments stored on a record's file field. All three verbs take the same three positional arguments — entity ID, record ID, and field name (case-sensitive). Field names are discoverable through uip df entities get.
Synopsis
uip df files <verb> [options]
uip df files <verb> [options]
Verbs
| Verb | Finalidade |
|---|---|
upload | Upload a file to a record field. |
download | Download the file attached to a record field. |
delete | Delete the file attached to a record field. |
uip df files upload
Upload a file to a record field.
Argumentos
| Name | Required | Finalidade |
|---|---|---|
<entity-id> | sim | Entity ID (UUID). |
<record-id> | sim | Record ID (UUID). |
<field-name> | sim | Name of the file field (case-sensitive). |
Opções
| Short | Long | Valor | Padrão | Description |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
-f | --file | Path | necessário | Path to the file to upload. |
Exemplos
uip df files upload a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice \
--file ./invoice.pdf
uip df files upload a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice \
--file ./invoice.pdf
Data shape (--output json)
{
"Code": "FileUploaded",
"Data": {
"EntityId": "a1b2c3d4-0000-0000-0000-000000000001",
"RecordId": "b2c3d4e5-0000-0000-0000-000000000001",
"FieldName": "invoice",
"FileName": "invoice.pdf"
}
}
{
"Code": "FileUploaded",
"Data": {
"EntityId": "a1b2c3d4-0000-0000-0000-000000000001",
"RecordId": "b2c3d4e5-0000-0000-0000-000000000001",
"FieldName": "invoice",
"FileName": "invoice.pdf"
}
}
uip df files download
Download the file attached to a record field.
Argumentos
| Name | Required | Finalidade |
|---|---|---|
<entity-id> | sim | Entity ID (UUID). |
<record-id> | sim | Record ID (UUID). |
<field-name> | sim | Name of the file field (case-sensitive). |
Opções
| Short | Long | Valor | Padrão | Description |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
| — | --destination | Path | <record-id>_<field-name>.bin | Output file path. |
Exemplos
uip df files download a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice \
--destination ./invoice.pdf
# Default destination
uip df files download a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice
uip df files download a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice \
--destination ./invoice.pdf
# Default destination
uip df files download a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice
Data shape (--output json)
{
"Code": "FileDownloaded",
"Data": {
"EntityId": "a1b2c3d4-0000-0000-0000-000000000001",
"RecordId": "b2c3d4e5-0000-0000-0000-000000000001",
"FieldName": "invoice",
"OutputPath": "./invoice.pdf"
}
}
{
"Code": "FileDownloaded",
"Data": {
"EntityId": "a1b2c3d4-0000-0000-0000-000000000001",
"RecordId": "b2c3d4e5-0000-0000-0000-000000000001",
"FieldName": "invoice",
"OutputPath": "./invoice.pdf"
}
}
uip df files delete
Delete the file attached to a record field. The record itself is unaffected — only the blob on the named field is removed.
Argumentos
| Name | Required | Finalidade |
|---|---|---|
<entity-id> | sim | Entity ID (UUID). |
<record-id> | sim | Record ID (UUID). |
<field-name> | sim | Name of the file field (case-sensitive). |
Opções
| Short | Long | Valor | Padrão | Description |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
Exemplos
uip df files delete a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice
uip df files delete a1b2c3d4-0000-0000-0000-000000000001 \
b2c3d4e5-0000-0000-0000-000000000001 invoice
Data shape (--output json)
{
"Code": "FileDeleted",
"Data": {
"EntityId": "a1b2c3d4-0000-0000-0000-000000000001",
"RecordId": "b2c3d4e5-0000-0000-0000-000000000001",
"FieldName": "invoice"
}
}
{
"Code": "FileDeleted",
"Data": {
"EntityId": "a1b2c3d4-0000-0000-0000-000000000001",
"RecordId": "b2c3d4e5-0000-0000-0000-000000000001",
"FieldName": "invoice"
}
}
Related
uip df entities— discover field names withentities get.uip df records— manage the records that own these attachments.