I'm trying to consolidate my separate sync scripts into a single script and was wondering if I can change filter settings farther down in script or if they are all additive?
Example:
I want to sync an entire drive with the exception of a couple of folders to one destination so I filter out the folder names. But then later in script I want to then sync just those folders to a different destination so don't want the filter ignoring them. Is there a way to do this?
filter include-protected
filter "-$RECYCLE.BIN\;-#recycle\;-System Volume Information\;-SomeFolder"
load "F:" "W:"
sync create-empty mirror:left->right
filter "-$RECYCLE.BIN\;-#recycle\;-System Volume Information" #Can I just do this to override the previous filter
load "F:\SomeFolder" "X:\SomeFolder"
sync create-empty mirror:left->right
Example:
I want to sync an entire drive with the exception of a couple of folders to one destination so I filter out the folder names. But then later in script I want to then sync just those folders to a different destination so don't want the filter ignoring them. Is there a way to do this?
filter include-protected
filter "-$RECYCLE.BIN\;-#recycle\;-System Volume Information\;-SomeFolder"
load "F:" "W:"
sync create-empty mirror:left->right
filter "-$RECYCLE.BIN\;-#recycle\;-System Volume Information" #Can I just do this to override the previous filter
load "F:\SomeFolder" "X:\SomeFolder"
sync create-empty mirror:left->right
Comment