From 7bb11c7c5bd3945690e8623cdf4e6218512c78b2 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Apr 2026 20:33:53 +0530 Subject: [PATCH] Update Storage docs for multi-file uploads and upload progress in Console Document the new Console capabilities for selecting and uploading multiple files at once (with drag-and-drop support), parallel upload processing, real-time upload progress indicators, and file extension pre-validation. Add a changelog entry for the feature. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/routes/changelog/(entries)/2026-04-10.markdoc | 13 +++++++++++++ .../products/storage/upload-download/+page.markdoc | 6 +++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 src/routes/changelog/(entries)/2026-04-10.markdoc diff --git a/src/routes/changelog/(entries)/2026-04-10.markdoc b/src/routes/changelog/(entries)/2026-04-10.markdoc new file mode 100644 index 0000000000..7eb8e9da76 --- /dev/null +++ b/src/routes/changelog/(entries)/2026-04-10.markdoc @@ -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 %} diff --git a/src/routes/docs/products/storage/upload-download/+page.markdoc b/src/routes/docs/products/storage/upload-download/+page.markdoc index 518f3450fb..6133981305 100644 --- a/src/routes/docs/products/storage/upload-download/+page.markdoc +++ b/src/routes/docs/products/storage/upload-download/+page.markdoc @@ -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. + +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. You can also upload files programmatically using our SDKs: