HostingEnvironment.ApplicationPhysicalPath 属性

定义

获取磁盘上指向应用程序目录的物理路径。

public:
 static property System::String ^ ApplicationPhysicalPath { System::String ^ get(); };
public static string ApplicationPhysicalPath { get; }
static member 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"

适用于