ADB(2)
-
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 -
C# adb 이용하여 Shell 명령어 실행 하기
private void test() { // 스크린 캡쳐 테스트 string[] szCom = new string[] {@"shell screencap -p /sdcard/Pictures/Screenshots/"+s+".png", @"pull /sdcard/Pictures/Screenshots/"+s+".png "+output_path+@"\"+s+".png"}; foreach (string sz in szCom) { string output = getDeviceInfo(sz); } } private static string getDeviceInfo(string command) { ProcessStartInfo psInfo = new ProcessStartInfo(); psInfo.FileName = @..
2020.05.28