我有一个exe应用程序和i的必需文件,我已将它们导入到我的VS C#项目中。我需要启动.exe进程,这很好,但我似乎无法让路径正确。有没有办法引用本地路径,例如在html中?
我的visual studio解决方案结构:
/RendererProxy
/Application
/COMTEST.exe
/core
/Program.cs
我试图从Program.cs到COMTEST.exe。
答案 0 :(得分:1)
尝试:
String exePath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),"AIRApplication", "COMTEST.exe");
以上代码解决了问题的1/2。另一个1/2是exe没有被复制到调试文件夹。更新“复制到输出目录”选项解决了这个问题。