• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#中利用process类调用外部程序以及执行dos命令-ASP.NET

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

c#中的Process类可方便的调用外部程序,所以我们可以通过调用cmd.exe程序加入参数 "/c " + 要执行的命令来执行一个dos命令

(/c代表执行参数指定的命令后关闭cmd.exe /k参数则不关闭cmd.exe

 1         private string RunCmd(string command)
 2         {
 3             //€€例一€€Process€€,€€€€一€€€€立€€程
 4             Process p = new Process();
 5
 6             //Process€€有一€€StartInfo€€性,€€€€是ProcessStartInfo€€,包括了一些€€性和方法,下面我€€用到了他的€€€€€€性:
 7
 8             p.StartInfo.FileName = "cmd.exe";           //€€定程序
 9             p.StartInfo.Arguments = "/c " + command;    //€€定程式€€行€€€€
10             p.StartInfo.UseShellExecute = false;        //€€€€Shell的使用
11             p.StartInfo.RedirectStandardInput = true;   //重定向€€€€€€入
12             p.StartInfo.RedirectStandardOutput = true;  //重定向€€€€€€出
13             p.StartInfo.RedirectStandardError = true;   //重定向€€€€€€出
14             p.StartInfo.CreateNoWindow = true;          //€€置不€€示窗口
15
16             p.Start();   //€€€€
17            
18             //p.StandardInput.WriteLine(command);       //也可以用€€€€方式€€入要€€行的命令
19             //p.StandardInput.WriteLine("exit");        //不€€要€€得加上Exit要不然下一行程式€€行的€€候€€€€€€
20            
21             return p.StandardOutput.ReadToEnd();        //€€€€出流取得命令€€行€€果
22
23         }

 

Source: C#中利用process类调用外部程序以及执行dos命令 - ASP.NET


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#皮肤美化——按钮发布时间:2022-07-13
下一篇:
在c#中RemoveAt、Remove、delete用法区别发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap