|
286
|
General Category / Questions / Re: Does s3sync preserve metadata?
|
on: May 02, 2007, 06:04:11 PM
|
|
There is no standard across tools, not by a long shot.
The meta data is simply S3 metadata. I use the keys "owner", "group", and "permissions", and as contents store the numeric values for them as returned by stat.
It is becoming my medium-term vision to create a GUI interface of my own. I like the idea of 's3fox' but it's a closed source tool and I think that's really hamstringing its development. Missing some really important features... But the benefit is that XUL and javascript are really easy to use, and everyone loves firefox!
|
|
|
|
|
288
|
General Category / Closed Bugs / Re: Crash when file is deleted during sync
|
on: April 29, 2007, 06:05:52 PM
|
|
"compile a list" is a bit misleading. It only keeps a partial list, the minimum of things needed in order to make sure the ordering will match up correctly. Creating a whole list on drives with a lot of small files sometimes uses up all memory on the machine, so I don't do that.
|
|
|
|
|
300
|
General Category / Feature Requests / Re: --exclude
|
on: April 22, 2007, 01:24:16 AM
|
|
Nope you're fine. Are you sure it's "processing" them, or just making a node for the directory and then skipping its contents? Because that's what your regex is telling it to do.
If you want to skip the folder itself, as well as its contents, you should trail with /|$ instead of just / (that's "slash, or the end of the string")
|
|
|
|
|