반응형
코드상에서 다른 프로그램(word, excel...) 실행 시킬 때 사용한다.
엑셀같은 겨우는 엑셀 실행 파일이 아닌 xxx.xlsx만 주어도 실행이 된다.
Arguments는 주지 않아도 된다.
using System.Diagnostics; Process process = new Process(); process.StartInfo.FileName = Path.Combine("D:\down\App.exe"); process.StartInfo.Arguments = "argument; process.Start();
Process.Start("D:\down\App.xlsx");
반응형
'C#' 카테고리의 다른 글
linQ Sample (4) | 2016.02.03 |
---|---|
error MSB4018: The "GenerateResource" task failed unexpectedly. (1) | 2016.02.01 |
메모리 상의 비트맵 이미지 파일로 저장하기 (0) | 2016.01.21 |
빌드시 bin 폴더로 리소스(이미지 등) 복사하기, 출력 디렉터리로 복사 (0) | 2016.01.18 |
dll, exe가 있는 경로 알기 (0) | 2016.01.18 |
댓글