uipath-cli
latest
false
UiPath CLI 用户指南
- 概述
- 开始使用
- 概念
- 使用 UiPath CLI
- 操作指南
- CI/CD 方法
- 命令参考
- 迁移
- 参考与支持
重要 :
请注意,此内容已使用机器翻译进行了本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。
Syntax and options for `uip solution download`, which downloads and extracts a Studio Web solution.
uip solution download downloads (exports) a solution from Studio Web as a .uis archive. Pass --extract to also unpack it into a directory.
大纲
uip solution download <solution-id> [-d <destination>] [-n <name>] [--extract]
uip solution download <solution-id> [-d <destination>] [-n <name>] [--extract]
参数
| 名称 | 必填 | 用途 |
|---|---|---|
<solution-id> | 是 | Studio Web solution UUID. Find it with uip solution list. |
选项
| 短 | 长 | 值 | 默认 | 描述 |
|---|---|---|---|---|
-d | --destination | dir | 当前目录 | Destination directory for the downloaded file. |
-n | --name | text | the solution ID | Output filename, without extension. Existing files are overwritten; --extract uses this name for the extracted directory too. Must be a plain filename — no path separators or ... |
| — | --extract | 标记 | 关闭 | Extract the downloaded .uis archive into a directory, and write AGENTS.md / CLAUDE.md briefing files there if the archive didn't already carry them. |
示例
uip solution download a1b2c3d4-0000-0000-0000-000000000001 \
--destination ./downloads --extract
uip solution download a1b2c3d4-0000-0000-0000-000000000001 \
--destination ./downloads --extract
数据形状(--输出 json)
{
"Code": "SolutionDownload",
"Data": {
"Status": "Solution exported successfully",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"Output": "./downloads/a1b2c3d4-0000-0000-0000-000000000001.uis",
"ExtractedTo": "./downloads/a1b2c3d4-0000-0000-0000-000000000001",
"BriefingFiles": [
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/AGENTS.md",
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/CLAUDE.md"
]
}
}
{
"Code": "SolutionDownload",
"Data": {
"Status": "Solution exported successfully",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"Output": "./downloads/a1b2c3d4-0000-0000-0000-000000000001.uis",
"ExtractedTo": "./downloads/a1b2c3d4-0000-0000-0000-000000000001",
"BriefingFiles": [
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/AGENTS.md",
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/CLAUDE.md"
]
}
}
ExtractedTo and BriefingFiles are only present when --extract is passed. BriefingFiles lists only the files this command wrote — if the archive already had AGENTS.md/CLAUDE.md, the field is omitted.
退出代码
请参阅共享合同的退出代码。
相关命令
uip solution list— find a solution's ID.uip solution delete— delete a Studio Web solution by ID.