728x90
C# 에서 외부 응용 프로그램을 호출하는 방법입니다.
맨먼저 using System.Diagnostics; 를 사용하면
System.Diagnostics.Process.Start() 대신 Process.Start() 로 글을 줄일 수 있습니다
특정 폴더 열기
System.Diagnostics.Process.Start("explorer.exe", "C:\temp");
특정 사이트 열기
System.Diagnostics.Process.Start("explorer.exe", http://www.naver.com);
윈도우를 종료
System.Diagnostics.Process.Start("cmd.exe","shutdown.exe -s -f -t 01");
윈도우를 재부팅
System.Diagnostics.Process.Start("cmd.exe","shutdown.exe -r -f -t 01");
html 이나 asp 파일을 열기
Process.Start("IExplore.exe", "C:\temp\default.html");
Process.Start("IExplore.exe", "C:\temp\default.asp");
728x90
'프로그래밍 > C#' 카테고리의 다른 글
Html Agility Pack - 웹 문서에서 텍스트만 분리하는 방법 (0) | 2016.01.22 |
---|---|
보호 수준 때문에 ~에 액세스할 수 없습니다. 해결법 (0) | 2015.10.07 |
c# esc 로 폼 닫기 (0) | 2015.06.25 |
DevExpress에서 simplebutton의 BackColor 바꾸는 방법 (2) | 2014.12.22 |
String.Format 사용하기 (0) | 2013.10.21 |
댓글