■ 설치 디렉토리 경로를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 |
using System; using System.IO; using System.Reflection; Assembly assembly = Assembly.GetExecutingAssembly(); Uri codeBaseURI = new Uri(assembly.CodeBase); string installDirectoryPath = Path.GetDirectoryName(codeBaseURI.LocalPath); |