HostingEnvironment.ApplicationPhysicalPath 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
애플리케이션 디렉터리에 대한 디스크 상의 실제 경로를 가져옵니다.
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
속성 값
애플리케이션 디렉터리에 대한 디스크 상의 실제 경로입니다.
예제
다음 코드 예제에서는 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"