Configuration.FilePath 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取由 Configuration 对象表示的配置文件的物理路径。
public:
property System::String ^ FilePath { System::String ^ get(); };
public string FilePath { get; }
member this.FilePath : string
Public ReadOnly Property FilePath As String
属性值
由此 Configuration 对象表示的配置文件的物理路径。
示例
下面的代码示例演示如何使用 FilePath 属性。
string filePath = config.FilePath;
Console.WriteLine("File path: {0}", filePath);
Dim filePath As String = config.FilePath
Console.WriteLine("File path: {0}", filePath)
注解
如果此属性 FilePath 的值表示合并视图,并且应用程序不存在实际文件,则返回父配置文件的路径。