国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

執(zhí)行CMD命令

2019-11-17 03:15:47
字體:
供稿:網(wǎng)友

執(zhí)行CMD命令

可以執(zhí)行多條命令,用“/r/n”分割

 1 using System; 2 using System.Diagnostics; 3  4 namespace Tool 5 { 6  7     public class CMDHelper 8     { 9         public static string[] ExeCommand(string commandText)10         {11 12             PRocess p = new Process();13             p.StartInfo.FileName = Environment.GetEnvironmentVariable("ComSpec");14             p.StartInfo.UseShellExecute = false;15             p.StartInfo.RedirectStandardInput = true;16             p.StartInfo.RedirectStandardOutput = true;17             p.StartInfo.RedirectStandardError = true;18             p.StartInfo.CreateNoWindow = true;19 20             p.Start();21             p.StandardInput.WriteLine(commandText);22             p.StandardInput.WriteLine("exit");23             p.WaitForExit();24 25             string strOutput = p.StandardOutput.ReadToEnd();26             string strError = p.StandardError.ReadToEnd();//無錯誤則返回空字符串27             p.Close();28             return new string[] { strOutput, strError };29         }30     }31 }


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 东方市| 益阳市| 万荣县| 察隅县| 遵义县| 邵东县| 古交市| 三门峡市| 柏乡县| 茂名市| 马关县| 高碑店市| 阿巴嘎旗| 麦盖提县| 图木舒克市| 筠连县| 台山市| 扎囊县| 会泽县| 万载县| 疏附县| 石楼县| 江西省| 焦作市| 碌曲县| 武平县| 洛南县| 大城县| 马鞍山市| 汉川市| 舞钢市| 宁津县| 长兴县| 曲靖市| 汉沽区| 精河县| 女性| 壶关县| 营口市| 余江县| 喜德县|