C# process 类 id
用process类启动了一个exe文件如何获取该文件的ProcessId最好用语句实现GetCurrentProcess()没有这个函数啊比如stringlang;lan...
用process类 启动了一个exe 文件
如何获取该文件的ProcessId
最好用语句实现
GetCurrentProcess()没有这个函数啊
比如
string lang;
lang = ".c";
string fileName = this.submitCode + problemId + userName + lang;
this.process = new Process();//实例
this.process.StartInfo.CreateNoWindow = false;//设定不显示窗口
this.process.StartInfo.UseShellExecute = false;
this.process.StartInfo.FileName = "cmd.exe"; //设定程序名
this.process.StartInfo.RedirectStandardInput = true; //重定向标准输入
this.process.StartInfo.RedirectStandardOutput = true; //重定向标准输出
this.process.StartInfo.RedirectStandardError = true;//重定向错误输出
this.process.Start();
this.process.StandardInput.WriteLine("tcc -n" + this.compiler + " " + fileName);
this.process.StandardInput.WriteLine("exit");
//this.process.WaitForExit();
//this.process.Close();
cmdend();
return this.process.StandardOutput.ReadToEnd();
请问如何获取cmd.exe的ProcessId 展开
如何获取该文件的ProcessId
最好用语句实现
GetCurrentProcess()没有这个函数啊
比如
string lang;
lang = ".c";
string fileName = this.submitCode + problemId + userName + lang;
this.process = new Process();//实例
this.process.StartInfo.CreateNoWindow = false;//设定不显示窗口
this.process.StartInfo.UseShellExecute = false;
this.process.StartInfo.FileName = "cmd.exe"; //设定程序名
this.process.StartInfo.RedirectStandardInput = true; //重定向标准输入
this.process.StartInfo.RedirectStandardOutput = true; //重定向标准输出
this.process.StartInfo.RedirectStandardError = true;//重定向错误输出
this.process.Start();
this.process.StandardInput.WriteLine("tcc -n" + this.compiler + " " + fileName);
this.process.StandardInput.WriteLine("exit");
//this.process.WaitForExit();
//this.process.Close();
cmdend();
return this.process.StandardOutput.ReadToEnd();
请问如何获取cmd.exe的ProcessId 展开
展开全部
在你这个程序里
this.process.Id
这样就行啊
this.process.Id
这样就行啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Process.Start("exe");
Process[] myProcesses = Process.GetProcessesByName("exe");
foreach(Process myProcess in myProcesses)
{
string name = myProcess.ProcessName;
sring id = myProcess.Id;
}
Process[] myProcesses = Process.GetProcessesByName("exe");
foreach(Process myProcess in myProcesses)
{
string name = myProcess.ProcessName;
sring id = myProcess.Id;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int proid = Process.GetCurrentProcess().Id;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询