설명 섹션
= name : 필터의 이름 = desc : 필터 설명
name: Sample Filter desd: Sample Filter ## 넣지 않아도 된다.
필터 설정 섹션
def:include ## 모든 파일을 포함하는 필터
필터에 포함한 파일 형식
정규식 부분에서 중요한 부분
\.c$ ## 확장자가(마지막부분이) .c 로 끝나는 것들만 해당된다. \.c ## 확장자 부분이 .c 로 시작되는 것들에 (.cpp 나 .com 처럼) 적용된다.
d: \\Debug ## 와 같이 쓸 수 있다.
예제 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