Possible Duplicate:
Rails or Django? (or something else?)
Amazon S3 boto: how to rename a file in a bucket?
I am using this:
http://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html
I need to rename a file, how can I do that?
I searched the docs thoroughly and couldn’t find anything.
You may use copy operation see http://docs.amazonwebservices.com/AmazonS3/latest/dev/CopyingObjectsExamples.html. Using the copy operation, you can:
Create additional copies of objects
Rename objects by copying them and deleting the original ones
Move objects across Amazon S3 locations (e.g., Northern California
and EU)