我正在尝试创建一个过滤器来仅比较.cpp
和.h
文件,但它不应该比较名称为的文件夹.vshistory
。
这是我得到的:
## This is a directory/file filter template for WinMerge
name: C++ Files
desc: Filter for C++ source and header files
## This is an exclusive filter
## (it lets through only matching files)
def: exclude
f: \.(cpp|h)$ ## To compare only .cpp and .h files
d: \\(?<!\.vshistory)
它只比较.cpp
文件.h
但没有忽略.vshistory
文件夹,这有什么问题?
请试试这个: