- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
Syntax and options for `uip or bucket-files`, which manages files inside Orchestrator storage buckets.
Manage files inside buckets: list, inspect, download, upload, delete, and fetch pre-signed URLs. Every subcommand takes <bucket-key> as its first argument. For the bucket itself (create / share / list across folders), see uip or buckets.
リソース間の規則 (認証、フォルダー スコープ、キーの種類、出力エンベロープ) については、「 uip or の概要」をご覧ください。
概要
uip or bucket-files list <bucket-key> --folder-path <path> | --folder-key <key> [--prefix <path> | -d <directory>] [--take-hint <n>] [--continuation-token <token>] [--expiry-in-minutes <n>] [--all-fields]
uip or bucket-files list-dirs <bucket-key> --folder-path <path> | --folder-key <key> [-d <directory>] [--file-name-glob <pattern>] [-l <n>] [--offset <n>] [--all-fields]
uip or bucket-files get <bucket-key> <path> --folder-path <path> | --folder-key <key> [--all-fields]
uip or bucket-files delete <bucket-key> <path> --folder-path <path> | --folder-key <key> --yes
uip or bucket-files download <bucket-key> <path> --folder-path <path> | --folder-key <key> [-d <local-file>]
uip or bucket-files upload <bucket-key> <path> --folder-path <path> | --folder-key <key> --file <local-file> [--content-type <mime>]
uip or bucket-files get-download-url <bucket-key> <path> --folder-path <path> | --folder-key <key> [--expiry-in-minutes <n>]
uip or bucket-files get-upload-url <bucket-key> <path> --folder-path <path> | --folder-key <key> [--expiry-in-minutes <n>] [--content-type <mime>]
uip or bucket-files list <bucket-key> --folder-path <path> | --folder-key <key> [--prefix <path> | -d <directory>] [--take-hint <n>] [--continuation-token <token>] [--expiry-in-minutes <n>] [--all-fields]
uip or bucket-files list-dirs <bucket-key> --folder-path <path> | --folder-key <key> [-d <directory>] [--file-name-glob <pattern>] [-l <n>] [--offset <n>] [--all-fields]
uip or bucket-files get <bucket-key> <path> --folder-path <path> | --folder-key <key> [--all-fields]
uip or bucket-files delete <bucket-key> <path> --folder-path <path> | --folder-key <key> --yes
uip or bucket-files download <bucket-key> <path> --folder-path <path> | --folder-key <key> [-d <local-file>]
uip or bucket-files upload <bucket-key> <path> --folder-path <path> | --folder-key <key> --file <local-file> [--content-type <mime>]
uip or bucket-files get-download-url <bucket-key> <path> --folder-path <path> | --folder-key <key> [--expiry-in-minutes <n>]
uip or bucket-files get-upload-url <bucket-key> <path> --folder-path <path> | --folder-key <key> [--expiry-in-minutes <n>] [--content-type <mime>]
リスト (List)
List files in a bucket. Two mutually exclusive modes: the default (flat, prefix-filtered) mode is paginated via --take-hint (default 500, max 1000) and --continuation-token, and accepts --prefix <path> and --expiry-in-minutes <n> (for the pre-signed download URLs included in each item). Passing -d, --directory <path> switches to Orchestrator's directory-listing API instead — a different response shape with no continuation token — and is incompatible with --prefix, --take-hint, --continuation-token, and --expiry-in-minutes. --all-fields returns the full API response.
uip or bucket-files list a1b2c3d4-0000-0000-0000-000000000001 \
--folder-path Shared
uip or bucket-files list a1b2c3d4-0000-0000-0000-000000000001 \
--folder-path Shared
list-dirs
List virtual directories. Optional -d, --directory <path> (lists root if omitted), --file-name-glob <pattern>, -l, --limit, --offset, --all-fields.
get
Get file metadata at <path>. --all-fields returns the full API response.
削除
Delete file at <path>. Requires -y, --yes — the CLI never prompts for destructive operations.
uip or bucket-files delete a1b2c3d4-0000-0000-0000-000000000001 \
"reports/summary.csv" --folder-path Shared --yes
uip or bucket-files delete a1b2c3d4-0000-0000-0000-000000000001 \
"reports/summary.csv" --folder-path Shared --yes
ダウンロード
ファイルをダウンロードします。-d, --destination <file>では、ディスクに書き込みます(BucketFileDownloadエンベロープを発行します)。含まず、コンテンツを stdout にストリーミングします。
uip or bucket-files download a1b2c3d4-0000-0000-0000-000000000001 \
"reports/summary.csv" --folder-path Shared --destination ./summary.csv
uip or bucket-files download a1b2c3d4-0000-0000-0000-000000000001 \
"reports/summary.csv" --folder-path Shared --destination ./summary.csv
アップロード
ローカル ファイルをアップロードします。--file <local-file>が必要です。任意 --content-type <mime> (省略した場合は自動検出)。
uip or bucket-files upload a1b2c3d4-0000-0000-0000-000000000001 \
"reports/summary.csv" --folder-path Shared --file ./summary.csv
uip or bucket-files upload a1b2c3d4-0000-0000-0000-000000000001 \
"reports/summary.csv" --folder-path Shared --file ./summary.csv
ダウンロード URL を取得 / アップロード URL を取得
Return a pre-signed URL to the file location, without transferring any data through the CLI. Optional --expiry-in-minutes <n>; the upload variant also accepts --content-type. To upload a local file end-to-end (presign and transfer in one step), use bucket-files upload instead.
終了コード
See Exit codes for the shared contract. delete exits 1 if -y, --yes is omitted.
関連コマンド
uip or buckets— バケットレベルの CRUD
参照
uip orの概要—すべてのuip or動詞に共通する規則。- 方法: Orchestrator のアセットとキューを管理する — バケット ファイルのアップロード/ダウンロード パターン。