Working with Files

Processing a File

  • To upload a single file up to 1 GB, use Upload a File API to upload a single file to the secure location.

  • To upload files that are more than 1 GB, perform the following steps:

    1. Split the file into multiple file parts using standard file splitting tools. Make sure that the size of each file part does not exceed 1 GB.

    2. Use Upload a File part API to upload each multi-part file to a secure location.

    3. Once all multi-part files are uploaded, use List Uploaded Files API to verify that all files are uploaded successfully.

    4. Use Manage the Multipart Upload API to merge the multi-part files together and verify the file size in the response.

Uncompressing an Uploaded File

To uncompress an uploaded file, use Uncompress zip or gzip file API.

Listing Uploaded Files

To list uploaded files in the secure location, use List uploaded files API.

Deleting Uploaded Files

To delete a specific file, use Delete a specific file API.

To delete a file part, use Delete a file part API.

Cancelling Multi-Part File Upload

To cancel a file upload, use Manage the Multipart Upload API.