What is the syntax for Dsynchronize "exclude filter" for files 's full path to exclude bin\* and obj\* of a C# solution?
- by Nam G. VU
Dsynchronize is a great free tool to sync two folders.
I'm using it to sync two solutions checked out from two different TFS Team Collection.
I want to exclude the following:
All files in bin folder
All files in obj folder
I tried bin\*; obj\* but it doesn't work.
How can I do that?
ps. Though, trying *.g.* and *cache* help to exclude the files whose names match with the filter. It seems the filter is applied to the file name only NOT the full path of the file