HostingEnvironment.ApplicationPhysicalPath 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取磁盘上指向应用程序目录的物理路径。
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"