aeontel file

Manage files

File commands

aeontel file list

List files in a workspace

TypeScript
aeontel file list --workspace <id> [--directory <id>] [--mime <prefix>]
Shell
aeontel file list --workspace wsp_...

aeontel file get

Get file metadata

TypeScript
aeontel file get <id>
Shell
aeontel file get id_...

aeontel file update

Rename or move a file

TypeScript
aeontel file update <id> [--name <name>] [--directory <id>]
Shell
aeontel file update id_...

aeontel file delete

Soft-delete a file (restorable until retention expires)

TypeScript
aeontel file delete <id>
Shell
aeontel file delete id_...

aeontel file download

Download a file via signed URL

TypeScript
aeontel file download <id> [--out <path>]
Shell
aeontel file download id_...

aeontel file html-from-url

Fetch the post-render HTML of a URL via Cloudflare Browser Rendering and store as a file

TypeScript
aeontel file html-from-url --workspace <id> --url <url> [--directory <id>] [--name <name>] [--ttl-ms <ms>]
Shell
aeontel file html-from-url --workspace wsp_... --url https://example.com

aeontel file markdown-from-url

Render a URL as markdown via Cloudflare Browser Rendering and store as a file

TypeScript
aeontel file markdown-from-url --workspace <id> --url <url> [--directory <id>] [--name <name>] [--ttl-ms <ms>]
Shell
aeontel file markdown-from-url --workspace wsp_... --url https://example.com

aeontel file pdf-from-url

Render a URL to PDF via Cloudflare Browser Rendering and store as a file

TypeScript
aeontel file pdf-from-url --workspace <id> --url <url> [--directory <id>] [--name <name>] [--ttl-ms <ms>]
Shell
aeontel file pdf-from-url --workspace wsp_... --url https://example.com

aeontel file read

Fetch file content and print to stdout

TypeScript
aeontel file read <id>
Shell
aeontel file read id_...

aeontel file restore

Restore a soft-deleted file

TypeScript
aeontel file restore <id>
Shell
aeontel file restore id_...

aeontel file screenshot-from-url

Screenshot a URL via Cloudflare Browser Rendering and store as a file

TypeScript
aeontel file screenshot-from-url --workspace <id> --url <url> [--directory <id>] [--name <name>] [--ttl-ms <ms>]
Shell
aeontel file screenshot-from-url --workspace wsp_... --url https://example.com

aeontel file to-markdown

Convert an existing file (PDF/DOCX/PPTX/XLSX/image/HTML) to markdown via Cloudflare Workers AI and store as a new file

TypeScript
aeontel file to-markdown <id> [--directory <id>] [--name <name>] [--ttl-ms <ms>]
Shell
aeontel file to-markdown id_...

aeontel file upload

Upload a local file (full multipart lifecycle: create → PUT parts → complete)

TypeScript
aeontel file upload --workspace <id> --file <path> [--directory <id>] [--name <override>]
Shell
aeontel file upload --workspace wsp_... --file <path>