Page 1 of 1

Multiple exclude/include filters

Posted: Tue May 09, 2006 6:32 am
by tsimmons
Is it possible to distinguish multiple patterns when designating exclude/include filters? Say for example I want to ignore *.exe and *.dll when comparing directories. Is it possible to set that up as a pattern?

I am familiar with regular expressions and tried *.exe|*.dll but that didn't seem to work.

Posted: Tue May 09, 2006 5:12 pm
by psguru
Yes. These are not regular expressions; they are comma-separated (as the name states at the top of Options | Dir Comparison ("Name filters (comma-separated patterns)") DOS-style patterns. So in your case you'd use

*.exe,*.dll

Posted: Tue May 09, 2006 6:21 pm
by tsimmons
(Sigh) Someday, I will be smart and observant --

If it had been a snake, it would of bitten me ...