Skip to main content

fused files

Manage files stored in Fused.

fused files [SUBCOMMAND] [OPTIONS]

Subcommands

SubcommandDescription
deleteDelete a remote file or prefix.
downloadDownload a remote file or directory to a local path.
getFetch a remote file into memory and print it.
listList files at a remote path.
searchSearch the bucket object index for files in cloud storage.
sign_urlCreate a signed URL for a remote path.
uploadUpload a local file or directory to a remote path.

fused files delete

Delete a remote file or prefix.

fused files delete PATH [OPTIONS]

Options

FlagDescription
--max-deletion-depth TEXTMaximum 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

FlagDescription
--recursive, -rDownload a remote directory prefix and all nested files.
--dry-runWith --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

FlagDescription
--detailsInclude metadata details in the listing output.
--recursive, -rList all nested files under the path (directories are traversed only).

Search the bucket object index for files in cloud storage.

fused files search [PATH_AND_QUERY...] [OPTIONS]

Options

FlagDescription
--countReturn only the number of matching objects (JSON: {"count": N}).
--prefix TEXTRegistered index prefix (which index table to use). Default: first segment of PATH, e.g. fused/ from s3://fused-users/fused/...
--key-prefix TEXTOnly return object keys starting with this prefix. Default: directory portion of PATH.
--limit INTEGERMax rows to return (ignored with --count). (default: 100)
--offset INTEGERPagination 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

FlagDescription
--timeout FLOATOptional request timeout in seconds.
--recursive, -rUpload a local directory tree to a remote prefix (relative paths preserved).
--dry-runWith --recursive, list local→remote paths without uploading.