怎么在C#中执行DOS命令

 我来答
1039580989094e
推荐于2016-10-19 · TA获得超过156个赞
知道小有建树答主
回答量:211
采纳率:100%
帮助的人:109万
展开全部
public static string RunCmd(string command)//运行一个cmd命令
{
Process p = new Process();
p.StartInfo.WorkingDirectory = "c:\\";
p.StartInfo.FileName = "cmd.exe"; //程序名
p.StartInfo.Arguments = "/c " + command;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true; //重定向错误输出
p.StartInfo.CreateNoWindow = true; //不显示窗口

p.Start();
return p.StandardOutput.ReadToEnd();

}
wangdw86
2011-08-26 · TA获得超过149个赞
知道小有建树答主
回答量:185
采纳率:0%
帮助的人:88.5万
展开全部
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
string strOutput=null;
// p.StandardInput.WriteLine("cd D:\\flv\\mplayer");
// p.StandardInput.WriteLine("cd d:");
p.StandardInput.WriteLine(string.Format("D:\\flv\\mplayer\\mencoder \"c:\\vs.wmv\" -o \"c:\\output.flv\" -of lavf -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate={0}:mbd=2:mv0:trell:v4mv:cbp:last_pred=3:dia=4:cmp=6:vb_strategy=1 -vf scale=512:-3 -ofps 12 -srate 22050",200));

p.StandardInput.WriteLine("exit");
strOutput = p.StandardOutput.ReadToEnd();
Console.WriteLine(strOutput);
p.WaitForExit();
p.Close();

记得同时要导入:using System.Diagnostics;命名空间。祝你好运
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匆匆聪明
2011-08-28 · TA获得超过222个赞
知道小有建树答主
回答量:174
采纳率:0%
帮助的人:105万
展开全部
System.Diagnostics.Process.Start("程序或文件名");

System.Diagnostics.Process.Start("程序或文件名","参数");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
风动破7728
2011-08-26 · TA获得超过1486个赞
知道答主
回答量:131
采纳率:0%
帮助的人:99.5万
展开全部
msdn 查exec
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式