Net Core教程

C#中使用命令行命令

本文主要是介绍C#中使用命令行命令,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

本文演示了如何在C#中使用命令行代码:

string command = System.Configuration.ConfigurationSettings.AppSettings["Command"];//ping www.baidu.com
try
{
      	Process p = new Process();
        p.StartInfo.FileName = "cmd.exe";
        p.StartInfo.Arguments = "/c " + command;
        p.StartInfo.UseShellExecute = false;
        p.StartInfo.RedirectStandardInput = true;
        p.StartInfo.RedirectStandardOutput = true;
        p.StartInfo.CreateNoWindow = true;
        p.Start();
        outputMsg = p.StandardOutput.ReadToEnd();
        p.Close();
        if (outputMsg.Contains("Reply"))
        {
        isComputerOn = "SUCCESS";
         return true;
        }
        else
        {
        isComputerOn = "ERROR";
        return false;
        }
        }
       catch (Exception ex)
       {
       return false;
       }
}


这篇关于C#中使用命令行命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!