Sync parameters

Hello,

I just want DOpus to do a sync job (so that I can uninstall my special sync-prog).

Dirs to sync are:

SourceDir "Source"
SubDirs "one", "two", "three" with also subdirs

DestinationDir "Dest"

Now the sync-command schould sync ONLY

"Source\two" and "Source\three" TO "Dest\two" and "Dest\three" (including subdirs)

Also it should delete all files/dirs/empty dirs in "Dest" that don't exist in "Source".

Is this possible to configure?

Well I expect you could construct a find filter to exclude the directories you do not want to sync so you could do this in one pass. However if it were me, I would set up two separate buttons instead. Maybe I'm just lazy but often I'll resort to making multiple buttons to accomplish a complex task rather than creating one long complicated one.

I'll leave the filter construct up to you, unless you ask specific questions about it that is, but here is the way I would set up my 2 buttons otherwise.

An example of the first button code to sync "Source\two" TO "Dest\two" follows:

Go "C:Source\three" DUALPATH="D:\Dest\three"
Set UTILITY=Sync,On

After pressing the above button which will open the source and destinations in a dual lister along with enabling the synchronization panel, you will need to set your synchronize panel options appropriately to get the desired results.

The second button code to sync "Source\three" TO "Dest\three" would be the same except you'd need to change the paths above to the "Three" paths.