C# - Process.Start() 操作被用户取消
C# - Process.Start() The Operation was cancelled by the user
请原谅我这里没有任何正确的格式,但我迫切需要一个解决这个问题的方法,我什至不知道这个问题的存在。
虽然运行宁Process.Start();我 运行 解决了这个问题:
Unhandled Exception: System.ComponentModel.Win32Exception: The operation was canceled by the user
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)
at WorkDamnit.Program.Main(String[] args)
无论我为什么尝试,我似乎永远无法解决这个问题。它似乎不是基于我的代码(见下文),因为我专门做了一个全新的项目来找出问题(当然没有运气)。
总之,罪魁祸首就在这里。我认为有更多经验的人会更幸运地尝试解决这个问题。也许我在 Visual Studio 安装中遗漏了一些东西。
Process process1 = Process.Start("Render\PHOENIXRender.exe");
Console.ReadKey();
尤里卡!感谢所有发表评论的人。原来问题与 OneDrive 同步和一般 OneDrive 有关。
我不太清楚为什么会出现这个问题,但我很高兴我可以继续我的工作。
请原谅我这里没有任何正确的格式,但我迫切需要一个解决这个问题的方法,我什至不知道这个问题的存在。
虽然运行宁Process.Start();我 运行 解决了这个问题:
Unhandled Exception: System.ComponentModel.Win32Exception: The operation was canceled by the user
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)
at WorkDamnit.Program.Main(String[] args)
无论我为什么尝试,我似乎永远无法解决这个问题。它似乎不是基于我的代码(见下文),因为我专门做了一个全新的项目来找出问题(当然没有运气)。
总之,罪魁祸首就在这里。我认为有更多经验的人会更幸运地尝试解决这个问题。也许我在 Visual Studio 安装中遗漏了一些东西。
Process process1 = Process.Start("Render\PHOENIXRender.exe");
Console.ReadKey();
尤里卡!感谢所有发表评论的人。原来问题与 OneDrive 同步和一般 OneDrive 有关。
我不太清楚为什么会出现这个问题,但我很高兴我可以继续我的工作。