gpt4 book ai didi

c# - 如何使用 .NET Core 中的默认编辑器打开文本文件

转载 作者:行者123 更新时间:2023-12-03 19:43:01 27 4
gpt4 key购买 nike

在 .NET Framework 中,我可以简单地做 Process.Start(filename);但是在 .NET Core 中,我得到了这个异常:

System.ComponentModel.Win32Exception: 'The specified executable is not a valid application for this OS platform.'



如何开始 testfile.txt使用我的默认应用程序?
谢谢!

最佳答案

像这样打开它:

new Process
{
StartInfo = new ProcessStartInfo(filename)
{
UseShellExecute = true
}
}.Start();

关于c# - 如何使用 .NET Core 中的默认编辑器打开文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60018792/

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