본문 바로가기
C#

코드상 프로그램 실행(Process)

by 캡틴노랑이 2016. 1. 26.
반응형

코드상에서 다른 프로그램(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");
반응형

댓글