gpt4 book ai didi

c# - Windows 7 中是否存在 explorer.exe 问题?

转载 作者:太空宇宙 更新时间:2023-11-03 22:22:47 24 4
gpt4 key购买 nike

s += "<p style=\"text-align: left;\"><a href=\"javascript:window.print()\">PRINT</a></p>";
System.IO.File.WriteAllText(@"CheckForm.html", s);
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.FileName = "explorer.exe";
startInfo.Arguments = "CheckForm.html";
System.Diagnostics.Process.Start(startInfo);

当我尝试在 Windows 7 中打开我的 C# Windows 应用程序时遇到问题,否则没有问题。

我无法使用上面的代码在 Windows 7 中打开 explorer.exe。

有什么建议吗?

最佳答案

要打开 HTML 文件,您只需使用文件路径调用 Process.Start,如下所示:

Process.Start(@"CheckForm.html");

这将在默认程序中打开文件。 (通常是 IE 或 Firefox)

关于c# - Windows 7 中是否存在 explorer.exe 问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2520239/

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