C\# 중 은 식 조작 CMD 명령 행 창
C\# 프로그램 에서 CMD. exe 프로그램 을 호출 하고 명령 행 창 인터페이스 를 표시 하지 않 아 CMD 의 다양한 기능 을 수행 하 는 간단 한 방법 을 소개 한다.
다음 과 같다.
System.Diagnosties.Process p=new System.Diagnosties.Process();
p.StartInfo.FileName="cmd.exe";//
p.StartInfo.UseShellExecute=false;
p.StartInfo.RedirectStanderInput=true;//
p.StartInfo.RedirectStanderOutput=true;//
p.StartInfo.CreateNoWindow=true;//
p.Start();//
// CMD :
p.StanderInput.WriteLine("shutdown -r t 10"); //10 (C# )
// CMD :
string sOutput = p.StandardOutput.ReadToEnd();
, CMD 。
,Process , C# 。
using System.Diagnostics;
private string RunCmd(string command)
{
// Process ,
Process p = new Process();
//Process StartInfo , ProcessStartInfo , , :
p.StartInfo.FileName = "cmd.exe"; //
p.StartInfo.Arguments = "/c " + command; //
p.StartInfo.UseShellExecute = false; // Shell
p.StartInfo.RedirectStandardInput = true; //
p.StartInfo.RedirectStandardOutput = true; //
p.StartInfo.RedirectStandardError = true; //
p.StartInfo.CreateNoWindow = true; //
p.Start(); //
//p.StandardInput.WriteLine(command); //
//p.StandardInput.WriteLine("exit"); // Exit
return p.StandardOutput.ReadToEnd(); //
}
----------------------------------------------------------
? string .
Lable1.Text=RunCmd("dir");
《 》
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.