C# 으로 윈도우 명령어 CMD 실행해보자 !!
CMD명령어를 실행하기 위해 간단히 수행하기 위해 코드 작성 /// /// textKey : 실행할 명령어 /// /// /// public string executeCMD(string textKey) { ProcessStartInfo pri = new ProcessStartInfo(); Process pro = new Process(); pri.FileName = @"cmd.exe"; pri.CreateNoWindow = true; pri.UseShellExecute = false; pri.RedirectStandardInput = true; //표준 출력을 리다이렉트 pri.RedirectStandardOutput = true; pri.RedirectStandardError = true; pro.St..
2020.12.21