gpt4 book ai didi

c# - 如何以编程方式保存 Beyond Compare 生成的比较报告

转载 作者:行者123 更新时间:2023-11-30 17:50:12 25 4
gpt4 key购买 nike

我有一段代码,我正在使用 Beyond compare 比较两个文件。

string s = @""C:\Program Files\Beyond Compare 2\BC2.exe"";

Process.Start(s, @"c:\temp\File1.txt c:\temp\File2.txt" );

现在我想用一个文件名以编程方式将比较报告保存在我桌面上的某个位置。

我搜索了文档,但找不到有关保存报告的任何内容。

目前上面的代码执行打开了一个窗口,如图所示(不要与窗口上的黑色部分混淆,我已将其着色以隐藏文件位置) don't get confused with the black part on the window, i have colored it that way to hide file locations

提前致谢。

最佳答案

我在Beyond compare的文档页面找到了解决方案。

在文件中添加以下行并用 My Script.txt 保存

file-report layout:side-by-side &
options:ignore-unimportant,display-context &
output-to:%3 output-options:html-color %1 %2

现在使用命令提示符运行以下代码 BeyondCompate.exe @"My Script.txt""1.txt""2.txt""Save.html"这会将报告保存在 Save.html 中。

我将其合并到我的代码中:

System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.FileName = "cmd.exe" ;
startInfo.Arguments = "/c" + "BeyondCompare.exe" + " " + @"My Script.txt" + " " + "1.txt" + " " + "2.txt" + " " +"Save.html";
System.Diagnostics.Process.Start(startInfo);

关于c# - 如何以编程方式保存 Beyond Compare 生成的比较报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20949013/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com