如何比较 winmerge 中的 2 个文件夹,但忽略文件扩展名?

How to compare 2 folders in winmerge, but ignore file extension?

我认为正则表达式正确,请原谅我对此的无知。

我从这个有用的东西中得到了一些想法stack question and the winmerge filter help page

但我无法让它工作。请提供一些帮助,非常感谢。

f: *\.insv(.mp4)?$ ## *.insv and *.mp4 files

要在同一个过滤器中排除这两个扩展名,您可以使用:

f: .*(\.insv|\.mp4)$

或者您可以使用一行来排除每个扩展名:

f: .*\.insv$
f: .*\.mp4$