zoukankan      html  css  js  c++  java
  • run a dos commands from C# code

    How to run a dos command from your C# code without showing a console window? Here is some code I copy from http://www.neeao.com/blog/article-3341.html
    I have used it in my project, it works.

    /// <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;
            }
     
  • 相关阅读:
    Dapper的基本使用
    Dapper
    Dapper(一) 简介和性能
    Dapper入门使用,代替你的DbSQLhelper
    Dapper-小型ORM之王(C#.NET)
    Dos.Common
    Dos.ORM(原Hxj.Data)- 目录、介绍
    读写分离
    什么是长连接,什么是短连接?长连接和短连接的区别是什么?
    HTTP的长连接和短连接
  • 原文地址:https://www.cnblogs.com/xingyukun/p/1161870.html
Copyright © 2011-2022 走看看