使用 beyond compare 比较文件列表
Compare list of files using beyond compare
我正在尝试使用 beyond compare 比较两个文件夹之间的文件子集。
示例:
文件夹 A 和文件夹 B。
我想比较目录中的特定文件:
c/d/foo.java
e/f/bar.java
过滤器在这里没有帮助,因为我想按名称而不是文件扩展名选择文件。
Beyond Compare 的文件名过滤器可以包括路径信息或完整的文件名;它们不仅限于扩展。来自帮助中的 File Masks 主题:
Relative file masks affect files or folders in specific locations.
p\f
f must be in folder p.
.\f
f must be in the base folder.
...\f
f may have zero or more parent folders.
Examples:
Windows\*.txt
affects any text file in any included folder named Windows.
...\Windows\*.txt
affects any text file in any folder named Windows.
.\Windows\*.txt
affects any text file in a folder named Windows that is in the base folder.
对于你的具体例子,你可以像你写的那样使用c/d/foo.java
。
我正在尝试使用 beyond compare 比较两个文件夹之间的文件子集。
示例: 文件夹 A 和文件夹 B。 我想比较目录中的特定文件:
c/d/foo.java
e/f/bar.java
过滤器在这里没有帮助,因为我想按名称而不是文件扩展名选择文件。
Beyond Compare 的文件名过滤器可以包括路径信息或完整的文件名;它们不仅限于扩展。来自帮助中的 File Masks 主题:
Relative file masks affect files or folders in specific locations.
p\f
f must be in folder p.
.\f
f must be in the base folder.
...\f
f may have zero or more parent folders.Examples:
Windows\*.txt
affects any text file in any included folder named Windows.
...\Windows\*.txt
affects any text file in any folder named Windows.
.\Windows\*.txt
affects any text file in a folder named Windows that is in the base folder.
对于你的具体例子,你可以像你写的那样使用c/d/foo.java
。