编程语言
首页 > 编程语言> > c# 实现操作系统 “运行” 功能

c# 实现操作系统 “运行” 功能

作者:互联网

void Main()
{
    var psi = new ProcessStartInfo();
    psi.FileName = "cmd.exe";
    psi.Arguments = "/c start /ABOVENORMAL notepad \"c:\\abc.txt\"";
    psi.CreateNoWindow = true;
    psi.UseShellExecute = false;
    psi.RedirectStandardOutput = true;
    Process.Start(psi);
}

 

标签:ProcessStartInfo,RedirectStandardOutput,psi,false,操作系统,c#,ABOVENORMAL,true,运行
来源: https://www.cnblogs.com/nanfei/p/14825582.html