zoukankan      html  css  js  c++  java
  • Run dos command IN C#

            /// <summary>
            
    /// A method used to run a dos command hiddenly.
            
    /// </summary>
            
    /// <param name="dosCommand"></param>
            
    /// <param name="outtime"></param>
            
    /// <returns></returns>
            public static string Execute(string dosCommand, int outtime)
            {
                
    string output = "";
                
    if (dosCommand != null && dosCommand != "")
                {
                    Process process 
    = new Process();//create process object
                    ProcessStartInfo startinfo = new ProcessStartInfo();
                    startinfo.FileName 
    = "cmd.exe";//
                    
    //bellow is the setting to hidden the console window
                    startinfo.Arguments = "/c" + dosCommand;
                    startinfo.UseShellExecute 
    = false;
                    startinfo.RedirectStandardInput 
    = false;
                    startinfo.RedirectStandardOutput 
    = true;
                    startinfo.CreateNoWindow 
    = true;
                    process.StartInfo 
    = startinfo;

                    
    try
                    {
                        
    if (process.Start())
                        {
                            
    if (outtime == 0)
                            { process.WaitForExit(); }
                            
    else
                            { process.WaitForExit(outtime); }
                            output 
    = process.StandardOutput.ReadToEnd();
                        }
                    }
                    
    catch (SqlException e)
                    {
                        
    throw e;
                    }
                    
    catch (Exception e)
                    {
                        
    throw e;
                    }
                    
    finally
                    {
                        
    if (process != null)
                        { process.Close(); }
                    }
                }
                
    return output;
            } 
  • 相关阅读:
    MSRA-TD5000数据集使用详解
    2017CS231n学习笔记——计算机视觉的概述
    函数式非凡的抽象能力
    或许是领域建模的真相
    SpringBoot+ActiveMq实现订阅模式(Topic)消息队列
    SpringBoot下Activemq自定义MessageConverter
    spring boot 2.0类找不到EmbeddedServletContainerInitializedEvent
    Error creating bean with name 'org.apache.cxf.spring.boot.autoconfigure.CxfAutoConfiguration
    Intellij IDEA使用 lambda表达式报错-source1.5中不支持lambda表达式
    SpringBoot--实战开发--commons-lang3(三十五)
  • 原文地址:https://www.cnblogs.com/RobotTech/p/1162215.html
Copyright © 2011-2022 走看看