Uploading Files
The sample code on this page is based on the same assumptions mentioned in Managing Stores.
In this section, we will guide you through the process of uploading a file to a Store. This process involves both uploading the file content and managing its associated metadata. Storing metadata, such as the file's name, and type, allows for easier identification and retrieval of files when needed.
We highly recommend storing the file's metadata along with the file content to make it easier to manage and interact with the uploaded file in the future.
Small Files
Writing whole file at once:
Streaming
For larger files or scenarios where you need more control over the upload process (e.g. managing upload progress, pausing, or canceling uploads), we recommend using streaming. Streaming allows you to upload the file in chunks, enabling better interactivity, monitoring, and control.
Streaming is especially useful when:
- You need to upload large files and a single upload might take a long time;
- You need the ability to cancel the upload in the middle of the process.
Uploading large file - writing to Store chunk by chunks:
Notes
- Metadata: helps you identify files later on by storing additional information about them. You can use both private metada (which might contain sensitive or internal data) and public metada (which can be shared publicly).
- Error Handling: During the streaming process, it's important to handle potential errors, such as network interruptions, by using try-catch blocks and the ability to abort the upload.
- Progress Monitoring: Streaming enables you to monitor the progress of the file upload, allowing you to display the current upload percentage to the user.
We use cookies on our website. We use them to ensure the proper functioning of the site and, if you agree, for purposes we set, such as analytics or marketing.