fused files
Manage files stored in Fused.
fused files [SUBCOMMAND] [OPTIONS]
Subcommands
| Subcommand | Description |
|---|---|
delete | Delete a remote file or prefix. |
download | Download a remote file or directory to a local path. |
get | Fetch a remote file into memory and print it. |
list | List files at a remote path. |
search | Search the bucket object index for files in cloud storage. |
sign_url | Create a signed URL for a remote path. |
upload | Upload a local file or directory to a remote path. |
fused files delete
Delete a remote file or prefix.
fused files delete PATH [OPTIONS]
Options
| Flag | Description |
|---|---|
--max-deletion-depth TEXT | Maximum recursive deletion depth, or "unlimited". (default: 3) |
fused files download
Download a remote file or directory to a local path.
fused files download PATH LOCAL_PATH [OPTIONS]
Options
| Flag | Description |
|---|---|
--recursive, -r | Download a remote directory prefix and all nested files. |
--dry-run | With --recursive, list remote→local paths without writing files. |
fused files get
Fetch a remote file into memory and print it.
fused files get PATH
fused files list
List files at a remote path.
fused files list PATH [OPTIONS]
Options
| Flag | Description |
|---|---|
--details | Include metadata details in the listing output. |
--recursive, -r | List all nested files under the path (directories are traversed only). |
fused files search
Search the bucket object index for files in cloud storage.
fused files search [PATH_AND_QUERY...] [OPTIONS]
Options
| Flag | Description |
|---|---|
--count | Return only the number of matching objects (JSON: {"count": N}). |
--prefix TEXT | Registered index prefix (which index table to use). Default: first segment of PATH, e.g. fused/ from s3://fused-users/fused/... |
--key-prefix TEXT | Only return object keys starting with this prefix. Default: directory portion of PATH. |
--limit INTEGER | Max rows to return (ignored with --count). (default: 100) |
--offset INTEGER | Pagination offset (ignored with --count). (default: 0) |
fused files sign_url
Create a signed URL for a remote path.
fused files sign_url PATH
fused files upload
Upload a local file or directory to a remote path.
fused files upload LOCAL_PATH REMOTE_PATH [OPTIONS]
Options
| Flag | Description |
|---|---|
--timeout FLOAT | Optional request timeout in seconds. |
--recursive, -r | Upload a local directory tree to a remote prefix (relative paths preserved). |
--dry-run | With --recursive, list local→remote paths without uploading. |