.net 응용프로그램(C#) 웹서비스(asp.net) 실행 경로 구하기
웹서비스(asp.net) 실행 경로 System.Web.UI; Page.Server.MapPath("./test.text"); 결과 값 : C:/inetpub/test.text 실제경로 반환. 응용프로그램(C#) 실행 경로 using System.IO; string strPath = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "파일명.확장자"); if (File.Exists(strPath)) 이리저기 찾아보다가 찾은 부분.. 나중에 유용하게 사용하기 위해 적어 놓음. ㅎㅎ