Я пытаюсь использовать WinMerge для сравнения двух каталогов:
C:\Users ...\Desktop\ Сравнить \ 35_A
C:\Users ...\Desktop\ Сравнить \ 35_HS
## This is a directory/file filter for WinMerge
## This filter lets through only files ASP.NET developers care about
name: ASP.NET Devel
desc: Lets through only files ASP.NET developer cares about
## This is an exclusive filter
## (it lets through only matching files)
def: exclude
## Filters for filenames begin with f:
## Filters for directories begin with d:
## (Inline comments begin with " ##" and extend to the end of the line)
f: \.xml$
f: \.xlst$
f: \.xsl$
f: \.xslt$
f: \.dtd$
f: \.html$
f: \.htm$
f: \.css$
f: \.gif$
f: \.bmp$
f: \.jpg$
f: \.png$
f: \.js$
f: \.dll$
f: \.aspx$
f: \.asmx$
f: \.ascx$
f: \.vb$
f: \.resx$
f: \.cs$
f: \.js$
f: \.vbproj$
f: \.csproj$
f: \.sln$
f: \.webinfo$
f: \.config$
d: \\*$ ## Subdirectories
def: exclude
d: \\bin
d: \\obj
Последние 3 строки не являются частью фильтра, я добавил их, пытаясь игнорировать все и вся во всех каталогах \bin \ и \ obj \. Я пробовал оба def: include
и def: exclude
, ни один из них не дает точных результатов.
Я просмотрел справочную документацию в WinMerge о файловых фильтрах, но не понимаю этого.