가. 프로세스 이름 가져오기 System.Diagnostics.Process currentProcess = System.Diagnostics.Process.GetCurrentProcess(); string strProcess = currentProcess.ProcessName; 나. 현재의 실행 폴더를 가져온다. string strFolder = System.IO.Directory.GetCurrentDirectory(); 다. 현재 폴더와 프로세스를 결합한 파일경로 string strFilePath = string.Format("{0}\\{1}.exe", System.IO.Directory.GetCurrentDirectory(), this.currentProcess.ProcessName);