■ Application 클래스의 StartupPath 정적 속성을 사용해 애플리케이션 실행 경로를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System.Windows.Forms; #region 애플리케이션 실행 경로 구하기 - GetApplicationExecutablePath() /// <summary> /// 애플리케이션 실행 경로 구하기 /// </summary> /// <returns>애플리케이션 실행 경로</returns> public string GetApplicationExecutablePath() { return Application.StartupPath; } #endregion |