Stefan Dragnev
Stefan Dragnev
Thanks for the quick reply. Does `--filter-after-mtime` apply to the source file timestamp or to the destination one?
OK, I see what you mean. My use case is slightly different: if I Ctrl-C in the middle of a sync, I'd like s3sync to pick up from where it...
Besides, mtime, that is "last modified" is not the same as the creation time. If I copy a file, its last-modified time gets copied with it, so I can have...
I may have been unclear. My use case is syncing a local folder to S3. I can sync a local folder to S3 and then add files to it that...
Looking at the filter code again, it still does an extra operation `group.Target.GetObjectMeta(destObj)` to check if the file exists at the destination. If the destination is an S3 path then...
> ListObjectsV2 is not a universal solution. I agree, but it covers the most important case, I think - when you use syncing to keep two folders in sync -...
https://docs.aws.amazon.com/AmazonS3/latest/dev/ListingKeysUsingAPIs.html > List results are always returned in UTF-8 binary order. Which means that the object list returned by ListObjectsV2 is always sorted. You don't need to cache the folder...
> Additionally, this synchronization algorithm fits very poorly on the architecture of the current application. Nothing to do about this one now, is there? :)
Frameworks with headers cause CMake to produce an incorrect build. CMake has this funny parameter called CMAKE_FIND_FRAMEWORK which is set by default to FIRST. This means that CMake will first...
How do we work around this? Is there an easy way to convert this object to a regular Date object? Like, maybe, `new Date(o.created.epoch_time)` ? Or do you suggest that...