/Knowledge/sources/honojs__hono/llms-full/rpc-file-uploads--fdee772373e9.md
RPC: File Uploads - hono-docs
RPC: File Uploads Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt file uploads Summary You can upload...
RPC: File Uploads
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#file-uploads
Summary
You can upload files using a form body: ts // client const res = await client.user.picture.$put({ form: { file: new File([fileToUpload], filename, { type: fileToUpload.type, }), }, }) ```ts // server const route = app.put( '/user/...
Content
You can upload files using a form body:
// client
const res = await client.user.picture.$put({
form: {
file: new File([fileToUpload], filename, {
type: fileToUpload.type,
}),
},
})
// server
const route = app.put(
'/user/picture',
zValidator(
'form',
z.object({
file: z.instanceof(File),
})
)
// ...
)
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#file-uploads",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / RPC > File Uploads",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 61,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "RPC: File Uploads",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}