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;
            } 
  • 相关阅读:
    STL——increment/decrement/dereference操作符
    STL——静态常量整数成员在class内部直接初始化
    STL——临时对象的产生与运用
    C++中模板类使用友元模板函数
    模板编程中的技巧
    plsql 表数据中文显示乱码(配置环境变量)
    plsql 常用快捷键(自动替换)
    javascript 跳出(终止)forEach循环
    plsql 快捷键配置
    plsql oracle client没有正确安装(plsql连接远程数据库)
  • 原文地址:https://www.cnblogs.com/RobotTech/p/1162215.html
Copyright © 2011-2022 走看看