목차

WinMerge의 파일 필터 작성

설명 섹션

= name : 필터의 이름
= desc : 필터 설명
name: Sample Filter
desd: Sample Filter ## 넣지 않아도 된다.

필터 설정 섹션

def:include ## 모든 파일을 포함하는 필터

필터에 포함한 파일 형식

정규식 부분에서 중요한 부분

Example

예제 1 :

f: \.cpp$ ## Match *.cpp files
f: \.h$ ## Match *.h files
f: ^My ## Match My*.* files
f: Dlg\. ## Match *Dlg.* files
d: \\test$ ## Match test folders
d: ^\\Build$ ## Match Build folders
d: Temp$ ## Match *Temp folders (for example, FirstTemp)
d: Src ## Match *Src* folders

예제 2 :

f: ^\.#.*$ ## .#filename.version files
f: Dlg\.c(pp)?$ ## *Dlg.c and *Dlg.cpp files
f: ^I.*\.h$ ## I*.h files
f: Srv[1-9]\.def$ ## *Srv1.def to *Srv9.def files
f: ^[h,k,m] ## h*.*, k*.*, and m*.* files