Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/routes/changelog/(entries)/2026-04-10.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: changelog
title: "Multi-file uploads and upload progress in Storage Console"
date: 2026-04-10
---

The Appwrite Console now supports uploading multiple files at once to your storage buckets. You can select several files from the file picker or drag and drop them directly onto the bucket page. Files are uploaded in parallel with a concurrency limit of 5 for optimal performance.

You can also now track upload progress in real time. Each file displays a progress percentage as it uploads, and the Console surfaces clear error messages if any files fail during the upload process. Files with extensions not allowed by the bucket configuration are automatically rejected before the upload begins.

{% arrow_link href="/docs/products/storage/upload-download" %}
Learn more about uploading files
{% /arrow_link %}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ You can upload and download files both programmatically using SDKs or through th

After you create a bucket or have navigated to bucket details, you can access the **Files** tab so you can upload, view, delete and update files in the bucket using the Appwrite project's dashboard. You can also perform all those operations from Appwrite's client SDK, server SDKs, and REST APIs as long as you have the proper permission.

When you are in the **Files** tab, you can click **Add File** and select a file to upload. If the bucket is configured to accept the file type and size you are uploading, your file will be uploaded, and you will see the file in the list of files.
When you are in the **Files** tab, you can click **Add File** and select one or more files to upload. You can also drag and drop files directly onto the bucket page. The Console supports uploading multiple files at once, processing up to 5 files in parallel for faster bulk uploads.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@atharvadeosthale just confirming, is there a 5 file limit?


During upload, a progress indicator displays the real-time upload percentage for each file. If a file fails to upload, the Console will show an error notification with details. Files that don't match the bucket's allowed file extensions are automatically rejected before the upload begins.

If the bucket is configured to accept the file types and sizes you are uploading, your files will be uploaded, and you will see them in the list of files.
Comment on lines +15 to +17
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@atharvadeosthale I don't think this is necessary


You can also upload files programmatically using our SDKs:

Expand Down
Loading