Writing to a specific folder on Amazon.S3

Does anyone know if it is possible to write data to a specific file position located on Amazon.S3?

For example, how can I write 100 bytes of data to a file on Amazon.S3 with an offset of 1000 bytes?

+4
source share
1 answer

No. I find it impossible to edit any in-situ file on Amazon S3 without downloading it. This is the storage space, like your hard drive, where you usually need to extract the file into memory for editing, and then return it (save it). Many APIs are available for this. For java you have AWS-SDK .

+3
source

All Articles