UnhandledException: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start()
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(String fileName)
大家好,
在尝试使用 Process.Start 打开 .csv 文件时,我正在测试的一台机器上遇到以下异常。我认为这是因为没有为这个盒子上的 .csv 文件设置文件关联。
那么你将如何避免这种情况呢?
强制 Process.Start 在记事本中打开?- 理想情况下它应该在 excel 中打开,但是如果 excel 在那台计算机上不存在,你会怎么做?
谢谢