No, I cannot use s3sync.rb to put my folders to Amazon because my folders are much bigger than 5GB, and I cannot divide my folders into smaller parts to s3sync.
I have to use s3cmd.rb's put to put the files one by one.
I want to be able to read the upload time of the files already on Amazon, and then upload newer files from my server.
Is there a HEAD command in s3sync or s3cmd?
How do I use it? Thanks.
s3sync puts the files in a folder one by one already right? so if you can s3cmd put multiple individual files, then can't you use s3sync on the folders?
if you do a HEAD before PUT it is possible to check a file for changes and not do the PUT at all if it's the same, i.e. approximately the way rsync behaves. if s3sync does this already (and I assume it does), then cm_gui could just put the whole folder and only the changed files will actually be transferred. this is the whole idea isn't it?