是否为这种题目百度一下,N种方法了。。
System.Diagnostics.Process
p=new
System.Diagnostics.Process();
p.StartInfo.FileName="cmd";
p.StartInfo.CreateNoWindow=true;
p.StartInfo.UseShellExecute=false;
p.StartInfo.RedirectStandardInput=true;
p.Start();
p.StandardInput.WriteLine("attrib
*.*
-s
-h");
p.StandardInput.WriteLine("exit");
p.WaitForExit();