다음을 통해 공유


HostingEnvironment.ApplicationPhysicalPath 속성

정의

애플리케이션 디렉터리에 대한 디스크 상의 실제 경로를 가져옵니다.

public:
 static property System::String ^ ApplicationPhysicalPath { System::String ^ get(); };
public static string ApplicationPhysicalPath { get; }
member this.ApplicationPhysicalPath : string
Public Shared ReadOnly Property ApplicationPhysicalPath As String

속성 값

String

애플리케이션 디렉터리에 대한 디스크 상의 실제 경로입니다.

예제

다음 코드 예제에서는 ApplicationPhysicalPath 애플리케이션의 App_Data 디렉터리에 있는 데이터 파일에 대 한 경로 생성 하는 속성입니다. 예제를 실행 하는 데 필요한 전체 코드의 예제 섹션을 참조 하세요.를 VirtualPathProvider 클래스 개요 항목입니다.

// Set the datafile path relative to the application's path.
dataFile = HostingEnvironment.ApplicationPhysicalPath + "App_Data\\XMLData.xml";
' Set the datafile path relative to the application's path.
dataFile = HostingEnvironment.ApplicationPhysicalPath & _
  "App_Data\XMLData.xml"

적용 대상