Author |
Message |
Kevin
Joined: 20 Jun 2007 Posts: 3
|
Posted: Wed Jun 20, 2007 3:47 pm Post subject: filter definitions |
|
|
new user:
apparently the file filters do not permit multiple entries per line, as is common in other apps. for example:
include: *.c; *.cpp; *.h*; *.txt
this results in no files being selected. I needed to put one file type per line to make this work.
Is there a way to put multiple file types on the same line? |
|
Back to top |
|
|
TGRMN Software Site Admin
Joined: 10 Jan 2005 Posts: 8759
|
Posted: Thu Jun 21, 2007 1:12 am Post subject: |
|
|
Please try using | instead of ;
e.g.
*.c|*.cpp|*.h*|*.txt
; is a valid character for a file name (or folder), | is not. This is why | was used as a separator instead of ;
thank you _________________ --
TGRMN Software Support
http://www.tgrmn.com
http://www.compareandmerge.com |
|
Back to top |
|
|
|