확장자를 제외한 현재 실행 프로세스 이름
System.Diagnostics.Process currentProcess = System.Diagnostics.Process.GetCurrentProcess();String s = currentProcess.ProcessName;
현재 실행된 디렉토리
String strFolder = System.IO.Directory.GetCurrentDirectory();