■ Path 클래스의 GetFullPath 정적 메소드를 사용해 현재 실행 디렉토리를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
string currentDirectoryPath = Path.GetFullPath("."); Console.WriteLine(currentDirectoryPath); |
■ Path 클래스의 GetFullPath 정적 메소드를 사용해 현재 실행 디렉토리를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
string currentDirectoryPath = Path.GetFullPath("."); Console.WriteLine(currentDirectoryPath); |