我想在C#asp.net(mvc)中运行.exe文件。我能够运行该特定的.exe文件,但它的文件需要我计算机目录中的其他文件。
如何将该目录添加到我的项目中? This is my running project. The exe file can't find the files which the .exe files needs to execute.
以下是我可以从我的PC运行.exe文件的代码。
public string Onclick()
{
Process p = new Process();
p.StartInfo.FileName = @"C:\Users\Talha\Desktop\New folder\linkedin\server";
p.Start();
// ProcessInfo.Start(@"C:\Users\Talha\Desktop\New folder\linkedin\server.exe");
return "BUTTON ONCLICK";
}
答案 0 :(得分:0)
你应该写这个地址:
"C:\Users\Talha\Desktop\New%20folder\linkedin\server.exe"